pub enum MarkerExpr {
Basic(String, MarkerOp, String),
And(Box<Self>, Box<Self>),
Or(Box<Self>, Box<Self>),
}
Variants§
Trait Implementations§
Source§impl Debug for MarkerExpr
impl Debug for MarkerExpr
Source§impl PartialEq for MarkerExpr
impl PartialEq for MarkerExpr
impl StructuralPartialEq for MarkerExpr
Auto Trait Implementations§
impl Freeze for MarkerExpr
impl RefUnwindSafe for MarkerExpr
impl Send for MarkerExpr
impl Sync for MarkerExpr
impl Unpin for MarkerExpr
impl UnwindSafe for MarkerExpr
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