pub struct RawColumn {
pub name: String,
pub ty: RawType,
pub foreign_key: Option<ForeignKey>,
pub verified: bool,
pub comment: Option<String>,
}
Expand description
Fields§
§name: String
Name of the column.
ty: RawType
Partial type of the column.
foreign_key: Option<ForeignKey>
Foreign key status of the column.
verified: bool
If the column has been verified to be valid.
comment: Option<String>
Comment placed after the column definition with //
.
Implementations§
Trait Implementations§
Source§impl Ord for RawColumn
impl Ord for RawColumn
Source§impl PartialOrd for RawColumn
impl PartialOrd for RawColumn
impl Eq for RawColumn
impl StructuralPartialEq for RawColumn
Auto Trait Implementations§
impl Freeze for RawColumn
impl RefUnwindSafe for RawColumn
impl Send for RawColumn
impl Sync for RawColumn
impl Unpin for RawColumn
impl UnwindSafe for RawColumn
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