pub struct StateTransformChain {
pub steps: Vec<StateTransform>,
}Expand description
A chain of state transforms applied sequentially.
Fields§
§steps: Vec<StateTransform>The ordered list of transforms applied sequentially.
Implementations§
Trait Implementations§
Source§impl Clone for StateTransformChain
impl Clone for StateTransformChain
Source§fn clone(&self) -> StateTransformChain
fn clone(&self) -> StateTransformChain
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 Shr<StateTransform> for StateTransformChain
Extend the chain with >>.
impl Shr<StateTransform> for StateTransformChain
Extend the chain with >>.
Source§type Output = StateTransformChain
type Output = StateTransformChain
The resulting type after applying the
>> operator.Auto Trait Implementations§
impl Freeze for StateTransformChain
impl !RefUnwindSafe for StateTransformChain
impl Send for StateTransformChain
impl Sync for StateTransformChain
impl Unpin for StateTransformChain
impl !UnwindSafe for StateTransformChain
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