pub struct CatalogTable {
pub name: String,
pub schema: SchemaRef,
pub table_id: u64,
pub indexes: HashMap<String, CatalogIndex>,
pub stats: Option<TableStatistics>,
}Fields§
§name: String§schema: SchemaRef§table_id: u64§indexes: HashMap<String, CatalogIndex>§stats: Option<TableStatistics>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CatalogTable
impl RefUnwindSafe for CatalogTable
impl Send for CatalogTable
impl Sync for CatalogTable
impl Unpin for CatalogTable
impl UnsafeUnpin for CatalogTable
impl UnwindSafe for CatalogTable
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