pub enum LikeOperator {
Glob,
Like,
Match,
Regexp,
}Expand description
Textual comparison operator in an expression
Variants§
Trait Implementations§
Source§impl Clone for LikeOperator
impl Clone for LikeOperator
Source§fn clone(&self) -> LikeOperator
fn clone(&self) -> LikeOperator
Returns a duplicate 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 Display for LikeOperator
impl Display for LikeOperator
Source§impl PartialEq for LikeOperator
impl PartialEq for LikeOperator
Source§impl ToTokens for LikeOperator
impl ToTokens for LikeOperator
Source§fn to_tokens<S: TokenStream + ?Sized, C: ToSqlContext>(
&self,
s: &mut S,
_: &C,
) -> Result<(), S::Error>
fn to_tokens<S: TokenStream + ?Sized, C: ToSqlContext>( &self, s: &mut S, _: &C, ) -> Result<(), S::Error>
Send token(s) to the specified stream with context
fn displayer<'a, 'b, C: ToSqlContext>(
&'b self,
ctx: &'a C,
) -> SqlDisplayer<'a, 'b, C, Self>where
Self: Sized,
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