pub enum PipelineOperator {
And,
Or,
}Expand description
Represents a boolean operator used to connect command pipelines in an AndOrList
Variants§
And
The command pipelines are connected by a boolean AND operator.
Or
The command pipelines are connected by a boolean OR operator.
Trait Implementations§
Source§impl Into<PipelineOperator> for AndOr
impl Into<PipelineOperator> for AndOr
Source§fn into(self) -> PipelineOperator
fn into(self) -> PipelineOperator
Converts this type into the (usually inferred) input type.
Source§impl PartialEq<AndOr> for PipelineOperator
impl PartialEq<AndOr> for PipelineOperator
Source§impl PartialEq for PipelineOperator
impl PartialEq for PipelineOperator
impl Eq for PipelineOperator
impl StructuralPartialEq for PipelineOperator
Auto Trait Implementations§
impl Freeze for PipelineOperator
impl RefUnwindSafe for PipelineOperator
impl Send for PipelineOperator
impl Sync for PipelineOperator
impl Unpin for PipelineOperator
impl UnwindSafe for PipelineOperator
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<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.