Enum TableStatus
pub enum TableStatus {
Active,
Archived,
Deprecated,
Unknown,
}Expand description
Broad table lifecycle status.
Variants§
Active
Table is active.
Archived
Table is archived.
Deprecated
Table is deprecated.
Unknown
Status is unknown.
Trait Implementations§
§impl Clone for TableStatus
impl Clone for TableStatus
§fn clone(&self) -> TableStatus
fn clone(&self) -> TableStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for TableStatus
impl Debug for TableStatus
§impl Default for TableStatus
impl Default for TableStatus
§fn default() -> TableStatus
fn default() -> TableStatus
Returns the “default value” for a type. Read more
§impl Hash for TableStatus
impl Hash for TableStatus
§impl Ord for TableStatus
impl Ord for TableStatus
§impl PartialEq for TableStatus
impl PartialEq for TableStatus
§impl PartialOrd for TableStatus
impl PartialOrd for TableStatus
impl Copy for TableStatus
impl Eq for TableStatus
impl StructuralPartialEq for TableStatus
Auto Trait Implementations§
impl Freeze for TableStatus
impl RefUnwindSafe for TableStatus
impl Send for TableStatus
impl Sync for TableStatus
impl Unpin for TableStatus
impl UnsafeUnpin for TableStatus
impl UnwindSafe for TableStatus
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