pub struct RelTableConfig {
pub schema: Schema,
pub domain_id: DomainId,
pub indexes: Vec<IndexSpec>,
}Expand description
Configuration for a RelTable.
Fields§
§schema: SchemaThe schema describing records stored in this table.
domain_id: DomainIdDonaDB domain used for primary records.
indexes: Vec<IndexSpec>Secondary index specs — one per indexed field.
Implementations§
Auto Trait Implementations§
impl Freeze for RelTableConfig
impl RefUnwindSafe for RelTableConfig
impl Send for RelTableConfig
impl Sync for RelTableConfig
impl Unpin for RelTableConfig
impl UnsafeUnpin for RelTableConfig
impl UnwindSafe for RelTableConfig
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