pub struct ScanResult {
pub keyspaces: Vec<String>,
pub tables: Vec<String>,
pub sstable_count: usize,
pub keyspace_info: Vec<KeyspaceInfo>,
pub warnings: Vec<String>,
}Expand description
Result of scanning a data directory
Fields§
§keyspaces: Vec<String>Keyspace names discovered (excluding system keyspaces)
tables: Vec<String>Fully qualified table names discovered (excluding system tables)
sstable_count: usizeTotal number of SSTables found
keyspace_info: Vec<KeyspaceInfo>Detailed keyspace information
warnings: Vec<String>Warnings about potential issues with the directory structure
Trait Implementations§
Source§impl Clone for ScanResult
impl Clone for ScanResult
Source§fn clone(&self) -> ScanResult
fn clone(&self) -> ScanResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnsafeUnpin for ScanResult
impl UnwindSafe for ScanResult
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