pub struct Less;
Available on crate feature
filter
only.Expand description
The OperatorClass
that can instantiate LessImpl
.
Trait Implementations§
Source§impl<T> OperatorClass<T> for Less
impl<T> OperatorClass<T> for Less
Source§fn instantiate(&self, rhs: &str) -> Result<Self::Instance, FilterError>
fn instantiate(&self, rhs: &str) -> Result<Self::Instance, FilterError>
Create a new
Operator
, parsing the supplied argument string
to initialise whatever representation this operator uses to
match against objects. Since this is a parsing operation, it
can fail.Auto Trait Implementations§
impl Freeze for Less
impl RefUnwindSafe for Less
impl Send for Less
impl Sync for Less
impl Unpin for Less
impl UnwindSafe for Less
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