pub enum LikeOperator {
Glob,
Like,
Match,
Regexp,
}
Expand description
Textual comparison operator in an expression
Variants§
Implementations§
Source§impl LikeOperator
impl LikeOperator
Sourcepub fn from_token(token_type: u16, token: Token<'_>) -> Self
pub fn from_token(token_type: u16, token: Token<'_>) -> Self
Constructor
Trait Implementations§
Source§impl Clone for LikeOperator
impl Clone for LikeOperator
Source§fn clone(&self) -> LikeOperator
fn clone(&self) -> LikeOperator
Returns a copy 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 LikeOperator
impl Debug for LikeOperator
Source§impl PartialEq for LikeOperator
impl PartialEq for LikeOperator
Source§impl ToTokens for LikeOperator
impl ToTokens for LikeOperator
impl Copy for LikeOperator
impl Eq for LikeOperator
impl StructuralPartialEq for LikeOperator
Auto Trait Implementations§
impl Freeze for LikeOperator
impl RefUnwindSafe for LikeOperator
impl Send for LikeOperator
impl Sync for LikeOperator
impl Unpin for LikeOperator
impl UnwindSafe for LikeOperator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.