pub struct AsOfClause {
pub token: Token,
pub as_of_type: SmartString,
pub value: Box<Expression>,
}Expand description
AS OF clause for temporal queries
Fields§
§token: Token§as_of_type: SmartString§value: Box<Expression>Trait Implementations§
Source§impl Clone for AsOfClause
impl Clone for AsOfClause
Source§fn clone(&self) -> AsOfClause
fn clone(&self) -> AsOfClause
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 AsOfClause
impl Debug for AsOfClause
Source§impl Display for AsOfClause
impl Display for AsOfClause
Source§impl PartialEq for AsOfClause
impl PartialEq for AsOfClause
impl StructuralPartialEq for AsOfClause
Auto Trait Implementations§
impl Freeze for AsOfClause
impl RefUnwindSafe for AsOfClause
impl Send for AsOfClause
impl Sync for AsOfClause
impl Unpin for AsOfClause
impl UnsafeUnpin for AsOfClause
impl UnwindSafe for AsOfClause
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