pub struct IsNull;
Available on crate feature
filter
only.Expand description
The OperatorClass
that can instantiate IsNullImpl
.
Trait Implementations§
Source§impl<T> OperatorClass<T> for IsNull
impl<T> OperatorClass<T> for IsNull
Source§type Instance = IsNullImpl
type Instance = IsNullImpl
The type of
Operator
this object can make.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 IsNull
impl RefUnwindSafe for IsNull
impl Send for IsNull
impl Sync for IsNull
impl Unpin for IsNull
impl UnwindSafe for IsNull
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