pub struct LikeOp {
pub left: Expression,
pub right: Expression,
pub escape: Option<Expression>,
pub quantifier: Option<String>,
}Expand description
LIKE/ILIKE operation with optional ESCAPE clause and quantifier (ANY/ALL)
Fields§
§left: Expression§right: Expression§escape: Option<Expression>ESCAPE character/expression
quantifier: Option<String>Quantifier: ANY, ALL, or SOME
Implementations§
Source§impl LikeOp
impl LikeOp
pub fn new(left: Expression, right: Expression) -> Self
pub fn with_escape( left: Expression, right: Expression, escape: Expression, ) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LikeOp
impl<'de> Deserialize<'de> for LikeOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LikeOp
Auto Trait Implementations§
impl Freeze for LikeOp
impl RefUnwindSafe for LikeOp
impl Send for LikeOp
impl Sync for LikeOp
impl Unpin for LikeOp
impl UnwindSafe for LikeOp
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