pub struct TableMeta {
pub name: &'static str,
pub schema: Option<&'static str>,
pub columns: &'static [ColumnMeta],
pub keys: &'static [KeyMeta],
pub relations: &'static [RelationMeta],
}Fields§
§name: &'static str§schema: Option<&'static str>§columns: &'static [ColumnMeta]§keys: &'static [KeyMeta]§relations: &'static [RelationMeta]Auto Trait Implementations§
impl Freeze for TableMeta
impl RefUnwindSafe for TableMeta
impl Send for TableMeta
impl Sync for TableMeta
impl Unpin for TableMeta
impl UnsafeUnpin for TableMeta
impl UnwindSafe for TableMeta
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