pub struct Table {
pub id: Uuid,
pub name: String,
pub attributes: Vec<Attribute>,
pub constraints: Vec<Constraint>,
pub indexes: Vec<Arc<Index>>,
pub sql_type: Arc<SqlTypeDefinition>,
}
Fields§
§id: Uuid
§name: String
§attributes: Vec<Attribute>
§constraints: Vec<Constraint>
§indexes: Vec<Arc<Index>>
§sql_type: Arc<SqlTypeDefinition>
Implementations§
Trait Implementations§
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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