Struct Unique Flow Combiner
Source pub struct UniqueFlowCombiner(/* private fields */);Implementations§
Source§impl UniqueFlowCombiner
impl UniqueFlowCombiner
pub fn new() -> Self
pub fn add_pad<P: IsA<Pad>>(&mut self, pad: &P)
pub fn clear(&mut self)
pub fn remove_pad<P: IsA<Pad>>(&mut self, pad: &P)
pub fn reset(&mut self)
pub fn update_flow( &mut self, fret: Result<FlowSuccess, FlowError>, ) -> Result<FlowSuccess, FlowError>
pub fn update_pad_flow<P: IsA<Pad>>( &mut self, pad: &P, fret: Result<FlowSuccess, FlowError>, ) -> Result<FlowSuccess, FlowError>
Trait Implementations§
Source§impl Debug for UniqueFlowCombiner
impl Debug for UniqueFlowCombiner
Source§impl Default for UniqueFlowCombiner
impl Default for UniqueFlowCombiner
impl Send for UniqueFlowCombiner
impl Sync for UniqueFlowCombiner
Auto Trait Implementations§
impl Freeze for UniqueFlowCombiner
impl RefUnwindSafe for UniqueFlowCombiner
impl Unpin for UniqueFlowCombiner
impl UnwindSafe for UniqueFlowCombiner
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more