pub struct CollationExpr {
pub this: Expression,
pub collation: String,
pub quoted: bool,
pub double_quoted: bool,
}Fields§
§this: Expression§collation: String§quoted: boolTrue if the collation was single-quoted in the original SQL (string literal)
double_quoted: boolTrue if the collation was double-quoted in the original SQL (identifier)
Trait Implementations§
Source§impl Clone for CollationExpr
impl Clone for CollationExpr
Source§fn clone(&self) -> CollationExpr
fn clone(&self) -> CollationExpr
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 CollationExpr
impl Debug for CollationExpr
Source§impl<'de> Deserialize<'de> for CollationExpr
impl<'de> Deserialize<'de> for CollationExpr
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 CollationExpr
impl PartialEq for CollationExpr
Source§impl Serialize for CollationExpr
impl Serialize for CollationExpr
impl StructuralPartialEq for CollationExpr
Auto Trait Implementations§
impl Freeze for CollationExpr
impl RefUnwindSafe for CollationExpr
impl Send for CollationExpr
impl Sync for CollationExpr
impl Unpin for CollationExpr
impl UnwindSafe for CollationExpr
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