pub struct IdentifierExpression<'a> {
pub parts: Vec<IdentifierPart<'a>>,
}Expand description
Identifier pointing to column
Fields§
§parts: Vec<IdentifierPart<'a>>The identifier parts, for example in “a.b.” the parts are “a”, “b” and “”
Trait Implementations§
Source§impl<'a> Clone for IdentifierExpression<'a>
impl<'a> Clone for IdentifierExpression<'a>
Source§fn clone(&self) -> IdentifierExpression<'a>
fn clone(&self) -> IdentifierExpression<'a>
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<'a> Debug for IdentifierExpression<'a>
impl<'a> Debug for IdentifierExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for IdentifierExpression<'a>
impl<'a> RefUnwindSafe for IdentifierExpression<'a>
impl<'a> Send for IdentifierExpression<'a>
impl<'a> Sync for IdentifierExpression<'a>
impl<'a> Unpin for IdentifierExpression<'a>
impl<'a> UnsafeUnpin for IdentifierExpression<'a>
impl<'a> UnwindSafe for IdentifierExpression<'a>
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