pub struct SimilarToExpr {
pub this: Expression,
pub pattern: Expression,
pub escape: Option<Expression>,
pub not: bool,
}Expand description
SIMILAR TO expression
Fields§
§this: Expression§pattern: Expression§escape: Option<Expression>§not: boolTrait Implementations§
Source§impl Clone for SimilarToExpr
impl Clone for SimilarToExpr
Source§fn clone(&self) -> SimilarToExpr
fn clone(&self) -> SimilarToExpr
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 SimilarToExpr
impl Debug for SimilarToExpr
Source§impl<'de> Deserialize<'de> for SimilarToExpr
impl<'de> Deserialize<'de> for SimilarToExpr
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
Source§impl PartialEq for SimilarToExpr
impl PartialEq for SimilarToExpr
Source§impl Serialize for SimilarToExpr
impl Serialize for SimilarToExpr
impl StructuralPartialEq for SimilarToExpr
Auto Trait Implementations§
impl Freeze for SimilarToExpr
impl RefUnwindSafe for SimilarToExpr
impl Send for SimilarToExpr
impl Sync for SimilarToExpr
impl Unpin for SimilarToExpr
impl UnwindSafe for SimilarToExpr
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