pub struct ColumnSpecification {
pub sql_type: SqlType,
pub capacity: Option<Capacity>,
pub constraints: Vec<ColumnConstraint>,
}
Fields§
§sql_type: SqlType
§capacity: Option<Capacity>
§constraints: Vec<ColumnConstraint>
Implementations§
Trait Implementations§
Source§impl Clone for ColumnSpecification
impl Clone for ColumnSpecification
Source§fn clone(&self) -> ColumnSpecification
fn clone(&self) -> ColumnSpecification
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 Debug for ColumnSpecification
impl Debug for ColumnSpecification
Source§impl PartialEq for ColumnSpecification
impl PartialEq for ColumnSpecification
impl StructuralPartialEq for ColumnSpecification
Auto Trait Implementations§
impl Freeze for ColumnSpecification
impl RefUnwindSafe for ColumnSpecification
impl Send for ColumnSpecification
impl Sync for ColumnSpecification
impl Unpin for ColumnSpecification
impl UnwindSafe for ColumnSpecification
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