#[non_exhaustive]pub enum MatchOperator {
Or,
And,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for MatchOperator
impl Clone for MatchOperator
Source§fn clone(&self) -> MatchOperator
fn clone(&self) -> MatchOperator
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 Debug for MatchOperator
impl Debug for MatchOperator
Source§impl PartialEq for MatchOperator
impl PartialEq for MatchOperator
Source§impl Serialize for MatchOperator
impl Serialize for MatchOperator
impl Copy for MatchOperator
impl Eq for MatchOperator
impl StructuralPartialEq for MatchOperator
Auto Trait Implementations§
impl Freeze for MatchOperator
impl RefUnwindSafe for MatchOperator
impl Send for MatchOperator
impl Sync for MatchOperator
impl Unpin for MatchOperator
impl UnsafeUnpin for MatchOperator
impl UnwindSafe for MatchOperator
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