pub enum DatabaseStartupState {
Ready,
Recovering,
}Expand description
Current generated-database startup readiness.
Variants§
Ready
Recovery controls are complete and the generated schema is reconciled.
Recovering
Dedicated replicated startup work remains.
Trait Implementations§
Source§impl CandidType for DatabaseStartupState
impl CandidType for DatabaseStartupState
Source§impl Clone for DatabaseStartupState
impl Clone for DatabaseStartupState
Source§fn clone(&self) -> DatabaseStartupState
fn clone(&self) -> DatabaseStartupState
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 moreimpl Copy for DatabaseStartupState
Source§impl Debug for DatabaseStartupState
impl Debug for DatabaseStartupState
Source§impl<'de> Deserialize<'de> for DatabaseStartupState
impl<'de> Deserialize<'de> for DatabaseStartupState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DatabaseStartupState
Source§impl PartialEq for DatabaseStartupState
impl PartialEq for DatabaseStartupState
impl StructuralPartialEq for DatabaseStartupState
Auto Trait Implementations§
impl Freeze for DatabaseStartupState
impl RefUnwindSafe for DatabaseStartupState
impl Send for DatabaseStartupState
impl Sync for DatabaseStartupState
impl Unpin for DatabaseStartupState
impl UnsafeUnpin for DatabaseStartupState
impl UnwindSafe for DatabaseStartupState
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