Struct partiql_logical::LikeMatch
source · pub struct LikeMatch {
pub pattern: String,
pub escape: String,
}
Expand description
Represents a LIKE expression where both the pattern
and escape
are string literals,
e.g. 'foo%' ESCAPE '/'
Fields§
§pattern: String
§escape: String
Trait Implementations§
source§impl PartialEq<LikeMatch> for LikeMatch
impl PartialEq<LikeMatch> for LikeMatch
impl Eq for LikeMatch
impl StructuralEq for LikeMatch
impl StructuralPartialEq for LikeMatch
Auto Trait Implementations§
impl RefUnwindSafe for LikeMatch
impl Send for LikeMatch
impl Sync for LikeMatch
impl Unpin for LikeMatch
impl UnwindSafe for LikeMatch
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