pub struct TableInfo {
pub qualified_name: String,
pub keyspace: String,
pub name: String,
pub sstable_count: usize,
pub path: PathBuf,
}Expand description
Table information
Fields§
§qualified_name: StringFully qualified table name (keyspace.table)
keyspace: StringKeyspace name
name: StringTable name
sstable_count: usizeSSTable count
path: PathBufTable directory path
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableInfo
impl RefUnwindSafe for TableInfo
impl Send for TableInfo
impl Sync for TableInfo
impl Unpin for TableInfo
impl UnsafeUnpin for TableInfo
impl UnwindSafe for TableInfo
Blanket Implementations§
impl<T> Allocation for T
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