pub struct Column { /* private fields */ }Expand description
A logical column declaration.
Implementations§
Source§impl Column
impl Column
Sourcepub fn name(&self) -> &ColumnName
pub fn name(&self) -> &ColumnName
Returns the name.
Sourcepub const fn has_default(&self) -> bool
pub const fn has_default(&self) -> bool
Returns whether omission is legal because a default is installed.
Sourcepub const fn is_generated(&self) -> bool
pub const fn is_generated(&self) -> bool
Returns whether the provider computes this column.
Trait Implementations§
impl Eq for Column
impl StructuralPartialEq for Column
Source§impl ToRelationDatum for Column
impl ToRelationDatum 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 UnsafeUnpin 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