pub struct TrimFunc {
pub this: Expression,
pub characters: Option<Expression>,
pub position: TrimPosition,
pub sql_standard_syntax: bool,
pub position_explicit: bool,
}Expand description
TRIM function
Fields§
§this: Expression§characters: Option<Expression>§position: TrimPosition§sql_standard_syntax: boolWhether SQL standard syntax was used (TRIM(BOTH chars FROM str)) vs function syntax (TRIM(str))
position_explicit: boolWhether the position was explicitly specified (BOTH/LEADING/TRAILING) vs defaulted
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TrimFunc
impl<'de> Deserialize<'de> for TrimFunc
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 TrimFunc
Auto Trait Implementations§
impl Freeze for TrimFunc
impl RefUnwindSafe for TrimFunc
impl Send for TrimFunc
impl Sync for TrimFunc
impl Unpin for TrimFunc
impl UnwindSafe for TrimFunc
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