#[non_exhaustive]pub enum PlanConnectionSource {
StageOut {
stage: String,
},
BoundaryIngress {
boundary: String,
},
}Expand description
Source endpoint of a plan connection.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for PlanConnectionSource
impl Clone for PlanConnectionSource
Source§fn clone(&self) -> PlanConnectionSource
fn clone(&self) -> PlanConnectionSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlanConnectionSource
impl Debug for PlanConnectionSource
Source§impl<'de> Deserialize<'de> for PlanConnectionSource
impl<'de> Deserialize<'de> for PlanConnectionSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlanConnectionSource
impl PartialEq for PlanConnectionSource
Source§impl Serialize for PlanConnectionSource
impl Serialize for PlanConnectionSource
impl Eq for PlanConnectionSource
impl StructuralPartialEq for PlanConnectionSource
Auto Trait Implementations§
impl Freeze for PlanConnectionSource
impl RefUnwindSafe for PlanConnectionSource
impl Send for PlanConnectionSource
impl Sync for PlanConnectionSource
impl Unpin for PlanConnectionSource
impl UnwindSafe for PlanConnectionSource
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more