pub struct TableMeta {
pub name: &'static str,
pub columns: &'static [ColumnMeta],
pub ddl: &'static [&'static str],
}Expand description
테이블 메타 — #[database]가 엔티티에서 수집
Fields§
§name: &'static str§columns: &'static [ColumnMeta]§ddl: &'static [&'static str]테이블·인덱스 DDL
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