pub enum AdditionalVariant {
Forwarder {
run: Vec<Field>,
default: FieldMap,
daisy_chain: Option<FieldMap>,
fanout_fanin: Option<FieldMap>,
chaos_monkey: Option<FieldMap>,
},
}Expand description
We don’t want to mess with other variants while experimenting
Variants§
Forwarder
Trait Implementations§
Source§impl Clone for AdditionalVariant
impl Clone for AdditionalVariant
Source§fn clone(&self) -> AdditionalVariant
fn clone(&self) -> AdditionalVariant
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 AdditionalVariant
impl Debug for AdditionalVariant
Source§impl<'de> Deserialize<'de> for AdditionalVariant
impl<'de> Deserialize<'de> for AdditionalVariant
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 AdditionalVariant
impl PartialEq for AdditionalVariant
impl Eq for AdditionalVariant
impl StructuralPartialEq for AdditionalVariant
Auto Trait Implementations§
impl Freeze for AdditionalVariant
impl RefUnwindSafe for AdditionalVariant
impl Send for AdditionalVariant
impl Sync for AdditionalVariant
impl Unpin for AdditionalVariant
impl UnwindSafe for AdditionalVariant
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