pub enum SchemaStatus {
Available {
keyspace: String,
table: String,
},
Missing {
table: String,
reason: String,
},
ExtractionFailed {
table: String,
cause: String,
suggestion: String,
},
}Expand description
Schema availability status for diagnostic purposes
Variants§
Available
Schema is available and ready for queries
Missing
Schema not found in registry
ExtractionFailed
Schema extraction failed from SSTable
Trait Implementations§
Source§impl Clone for SchemaStatus
impl Clone for SchemaStatus
Source§fn clone(&self) -> SchemaStatus
fn clone(&self) -> SchemaStatus
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 SchemaStatus
impl RefUnwindSafe for SchemaStatus
impl Send for SchemaStatus
impl Sync for SchemaStatus
impl Unpin for SchemaStatus
impl UnsafeUnpin for SchemaStatus
impl UnwindSafe for SchemaStatus
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