pub enum ChainBehavior {
Complete,
FinalOnly,
Partial,
}Variants§
Complete
Execute all actions, return all results (default)
FinalOnly
Execute all actions, return only final result
Partial
Execute until error, return partial results
Trait Implementations§
Source§impl Clone for ChainBehavior
impl Clone for ChainBehavior
Source§fn clone(&self) -> ChainBehavior
fn clone(&self) -> ChainBehavior
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 moreAuto Trait Implementations§
impl Freeze for ChainBehavior
impl RefUnwindSafe for ChainBehavior
impl Send for ChainBehavior
impl Sync for ChainBehavior
impl Unpin for ChainBehavior
impl UnwindSafe for ChainBehavior
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