pub struct SubstringFunc {
pub this: Expression,
pub start: Expression,
pub length: Option<Expression>,
pub from_for_syntax: bool,
}Expand description
SUBSTRING function
Fields§
§this: Expression§start: Expression§length: Option<Expression>§from_for_syntax: boolWhether SQL standard FROM/FOR syntax was used (true) vs comma-separated (false)
Trait Implementations§
Source§impl Clone for SubstringFunc
impl Clone for SubstringFunc
Source§fn clone(&self) -> SubstringFunc
fn clone(&self) -> SubstringFunc
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 SubstringFunc
impl Debug for SubstringFunc
Source§impl<'de> Deserialize<'de> for SubstringFunc
impl<'de> Deserialize<'de> for SubstringFunc
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 SubstringFunc
impl PartialEq for SubstringFunc
Source§impl Serialize for SubstringFunc
impl Serialize for SubstringFunc
impl StructuralPartialEq for SubstringFunc
Auto Trait Implementations§
impl Freeze for SubstringFunc
impl RefUnwindSafe for SubstringFunc
impl Send for SubstringFunc
impl Sync for SubstringFunc
impl Unpin for SubstringFunc
impl UnwindSafe for SubstringFunc
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