pub enum PgStateProperty {
Creating,
Restarting,
Running,
Replaying_wal,
Restoring_backup,
Finalizing_restore,
Unavailable,
Deleting,
Unknown(String),
}Expand description
pgStateProperty enum from the ClickHouse Cloud API.
Variants§
Creating
Restarting
Running
Replaying_wal
Restoring_backup
Finalizing_restore
Deleting
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for PgStateProperty
impl Clone for PgStateProperty
Source§fn clone(&self) -> PgStateProperty
fn clone(&self) -> PgStateProperty
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 moreSource§impl Debug for PgStateProperty
impl Debug for PgStateProperty
Source§impl Default for PgStateProperty
impl Default for PgStateProperty
Source§fn default() -> PgStateProperty
fn default() -> PgStateProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PgStateProperty
impl<'de> Deserialize<'de> for PgStateProperty
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
Source§impl Display for PgStateProperty
impl Display for PgStateProperty
Source§impl PartialEq for PgStateProperty
impl PartialEq for PgStateProperty
Source§fn eq(&self, other: &PgStateProperty) -> bool
fn eq(&self, other: &PgStateProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PgStateProperty
impl Serialize for PgStateProperty
impl StructuralPartialEq for PgStateProperty
Auto Trait Implementations§
impl Freeze for PgStateProperty
impl RefUnwindSafe for PgStateProperty
impl Send for PgStateProperty
impl Sync for PgStateProperty
impl Unpin for PgStateProperty
impl UnsafeUnpin for PgStateProperty
impl UnwindSafe for PgStateProperty
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