pub enum DeployStatus {
Show 14 variants
Created,
Started,
PreparingEnvironment,
CloningCode,
InstallingDependencies,
BuildingCode,
CheckingSslCerts,
CleaningUp,
RunningContainer,
Stopping,
Stopped,
Failure,
Success,
AccessError,
}Expand description
DeployStatus : Статусы деплоя. Статусы деплоя.
Variants§
Created
Started
PreparingEnvironment
CloningCode
InstallingDependencies
BuildingCode
CheckingSslCerts
CleaningUp
RunningContainer
Stopping
Stopped
Failure
Success
AccessError
Trait Implementations§
Source§impl Clone for DeployStatus
impl Clone for DeployStatus
Source§fn clone(&self) -> DeployStatus
fn clone(&self) -> DeployStatus
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 DeployStatus
impl Debug for DeployStatus
Source§impl Default for DeployStatus
impl Default for DeployStatus
Source§fn default() -> DeployStatus
fn default() -> DeployStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployStatus
impl<'de> Deserialize<'de> for DeployStatus
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 DeployStatus
impl Display for DeployStatus
Source§impl Hash for DeployStatus
impl Hash for DeployStatus
Source§impl Ord for DeployStatus
impl Ord for DeployStatus
Source§fn cmp(&self, other: &DeployStatus) -> Ordering
fn cmp(&self, other: &DeployStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeployStatus
impl PartialEq for DeployStatus
Source§fn eq(&self, other: &DeployStatus) -> bool
fn eq(&self, other: &DeployStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DeployStatus
impl PartialOrd for DeployStatus
Source§impl Serialize for DeployStatus
impl Serialize for DeployStatus
impl Copy for DeployStatus
impl Eq for DeployStatus
impl StructuralPartialEq for DeployStatus
Auto Trait Implementations§
impl Freeze for DeployStatus
impl RefUnwindSafe for DeployStatus
impl Send for DeployStatus
impl Sync for DeployStatus
impl Unpin for DeployStatus
impl UnsafeUnpin for DeployStatus
impl UnwindSafe for DeployStatus
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