pub struct CdDt {
pub name: String,
pub data_type: String,
pub fk: bool,
pub non_generated: bool,
pub dep: Option<ForeignKeyRel>,
pub nullable: bool,
}Fields§
§name: String§data_type: String§fk: bool§non_generated: bool§dep: Option<ForeignKeyRel>§nullable: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for CdDt
impl RefUnwindSafe for CdDt
impl Send for CdDt
impl Sync for CdDt
impl Unpin for CdDt
impl UnsafeUnpin for CdDt
impl UnwindSafe for CdDt
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