pub struct AndOrList {
pub first: Pipeline,
pub rest: Vec<(AndOr, Pipeline)>,
}Expand description
A pipeline chain joined by short-circuiting && and ||.
Fields§
§first: PipelineThe unconditional first pipeline.
rest: Vec<(AndOr, Pipeline)>Conditionally executed continuations.
Trait Implementations§
impl Eq for AndOrList
impl StructuralPartialEq for AndOrList
Auto Trait Implementations§
impl Freeze for AndOrList
impl RefUnwindSafe for AndOrList
impl Send for AndOrList
impl Sync for AndOrList
impl Unpin for AndOrList
impl UnsafeUnpin for AndOrList
impl UnwindSafe for AndOrList
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.