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