pub struct Column {
pub name: Identifier,
pub table: Option<Identifier>,
pub join_mark: bool,
pub trailing_comments: Vec<String>,
}Expand description
Represent a column reference, optionally qualified by a table name.
Renders as name when unqualified, or table.name when qualified.
Use Expression::column() or Expression::qualified_column() for
convenient construction.
Fields§
§name: IdentifierThe column name.
table: Option<Identifier>Optional table qualifier (e.g. t in t.col).
join_mark: boolOracle-style join marker (+) for outer joins
trailing_comments: Vec<String>Trailing comments that appeared after this column reference
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Column
impl<'de> Deserialize<'de> for Column
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
impl StructuralPartialEq for Column
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
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