pub struct IntervalLiteral {
pub token: Token,
pub value: SmartString,
pub quantity: i64,
pub unit: SmartString,
}Expand description
INTERVAL literal
Fields§
§token: Token§value: SmartString§quantity: i64§unit: SmartStringTrait Implementations§
Source§impl Clone for IntervalLiteral
impl Clone for IntervalLiteral
Source§fn clone(&self) -> IntervalLiteral
fn clone(&self) -> IntervalLiteral
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntervalLiteral
impl Debug for IntervalLiteral
Source§impl Display for IntervalLiteral
impl Display for IntervalLiteral
Source§impl PartialEq for IntervalLiteral
impl PartialEq for IntervalLiteral
impl StructuralPartialEq for IntervalLiteral
Auto Trait Implementations§
impl Freeze for IntervalLiteral
impl RefUnwindSafe for IntervalLiteral
impl Send for IntervalLiteral
impl Sync for IntervalLiteral
impl Unpin for IntervalLiteral
impl UnsafeUnpin for IntervalLiteral
impl UnwindSafe for IntervalLiteral
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