Enum StepContentConfig
enum StepContentConfig<'a> {
Boolean(BooleanStepConfig),
Linear(LinearStepConfig),
IfChain(IfChainStepConfig<'a>),
Filter(FilterStepConfig<'a>),
Clamp(ClampStepConfig),
Ref(RefStepConfig<'a>),
Changed(ChangedStepConfig),
PulseDuration(PulseDurationStepConfig),
}Variants§
Boolean(BooleanStepConfig)
Linear(LinearStepConfig)
IfChain(IfChainStepConfig<'a>)
Filter(FilterStepConfig<'a>)
Clamp(ClampStepConfig)
Ref(RefStepConfig<'a>)
Changed(ChangedStepConfig)
PulseDuration(PulseDurationStepConfig)
Implementations§
§impl<'a> StepContentConfig<'a>
impl<'a> StepContentConfig<'a>
const fn type_name(&self) -> &'static str
fn build_step_mut(self, legend: &mut Legend) -> Result<AnyStepMut>
fn build_step(self, legend: &mut Legend) -> Result<Step>
Trait Implementations§
§impl<'a> Clone for StepContentConfig<'a>
impl<'a> Clone for StepContentConfig<'a>
§fn clone(&self) -> StepContentConfig<'a>
fn clone(&self) -> StepContentConfig<'a>
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 more§impl<'de: 'a, 'a> Deserialize<'de> for StepContentConfig<'a>
impl<'de: 'a, 'a> Deserialize<'de> for StepContentConfig<'a>
§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
Auto Trait Implementations§
impl<'a> Freeze for StepContentConfig<'a>
impl<'a> RefUnwindSafe for StepContentConfig<'a>
impl<'a> Send for StepContentConfig<'a>
impl<'a> Sync for StepContentConfig<'a>
impl<'a> Unpin for StepContentConfig<'a>
impl<'a> UnwindSafe for StepContentConfig<'a>
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