Struct datafusion::prelude::Column [−][src]
Expand description
A named reference to a qualified field in a schema.
Fields
relation: Option<String>
relation/table name.
name: String
field/column name.
Implementations
Deserialize a fully qualified name string into a column
Normalizes self
if is unqualified (has no relation name)
with an explicit qualifier from the first matching input
schemas.
For example, foo
will be normalized to t.foo
if there is a
column named foo
in a relation named t
found in schemas
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Column
impl UnwindSafe for Column
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
type Output = T
type Output = T
Should always be Self