Struct StepConfig
pub struct StepConfig<'a> {
condition: ConditionConfig<'a>,
content: StepContentConfig<'a>,
}Fields§
§condition: ConditionConfig<'a>§content: StepContentConfig<'a>Implementations§
§impl<'a> StepConfig<'a>
impl<'a> StepConfig<'a>
pub fn build_step(self, legend: &mut Legend) -> Result<Step>
pub fn build_step_mut(self, legend: &mut Legend) -> Result<AnyStepMut>
Trait Implementations§
§impl<'a> Clone for StepConfig<'a>
impl<'a> Clone for StepConfig<'a>
§fn clone(&self) -> StepConfig<'a>
fn clone(&self) -> StepConfig<'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 StepConfig<'a>
impl<'de: 'a, 'a> Deserialize<'de> for StepConfig<'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 StepConfig<'a>
impl<'a> RefUnwindSafe for StepConfig<'a>
impl<'a> Send for StepConfig<'a>
impl<'a> Sync for StepConfig<'a>
impl<'a> Unpin for StepConfig<'a>
impl<'a> UnwindSafe for StepConfig<'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