pub struct SimpleTableSource {
pub token: Token,
pub name: Identifier,
pub alias: Option<Identifier>,
pub as_of: Option<AsOfClause>,
}Expand description
Simple table source
Fields§
§token: Token§name: Identifier§alias: Option<Identifier>§as_of: Option<AsOfClause>Trait Implementations§
Source§impl Clone for SimpleTableSource
impl Clone for SimpleTableSource
Source§fn clone(&self) -> SimpleTableSource
fn clone(&self) -> SimpleTableSource
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 SimpleTableSource
impl Debug for SimpleTableSource
Source§impl Display for SimpleTableSource
impl Display for SimpleTableSource
Source§impl PartialEq for SimpleTableSource
impl PartialEq for SimpleTableSource
impl StructuralPartialEq for SimpleTableSource
Auto Trait Implementations§
impl Freeze for SimpleTableSource
impl RefUnwindSafe for SimpleTableSource
impl Send for SimpleTableSource
impl Sync for SimpleTableSource
impl Unpin for SimpleTableSource
impl UnsafeUnpin for SimpleTableSource
impl UnwindSafe for SimpleTableSource
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