#[repr(C)]pub enum BuildDeploymentStatusType {
DEPLOYED = 0,
UNDEPLOYED = 1,
}
Expand description
Status string for the image deployment.
Enumeration of values.
Since this enum’s variants do not hold data, we can easily define them them as #[repr(C)]
which helps with FFI.
Variants§
Trait Implementations§
Source§impl Clone for BuildDeploymentStatusType
impl Clone for BuildDeploymentStatusType
Source§fn clone(&self) -> BuildDeploymentStatusType
fn clone(&self) -> BuildDeploymentStatusType
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 moreSource§impl Debug for BuildDeploymentStatusType
impl Debug for BuildDeploymentStatusType
Source§impl<'de> Deserialize<'de> for BuildDeploymentStatusType
impl<'de> Deserialize<'de> for BuildDeploymentStatusType
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 BuildDeploymentStatusType
impl Display for BuildDeploymentStatusType
Source§impl FromStr for BuildDeploymentStatusType
impl FromStr for BuildDeploymentStatusType
Source§impl Ord for BuildDeploymentStatusType
impl Ord for BuildDeploymentStatusType
Source§fn cmp(&self, other: &BuildDeploymentStatusType) -> Ordering
fn cmp(&self, other: &BuildDeploymentStatusType) -> Ordering
1.21.0 · 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 PartialOrd for BuildDeploymentStatusType
impl PartialOrd for BuildDeploymentStatusType
impl Copy for BuildDeploymentStatusType
impl Eq for BuildDeploymentStatusType
impl StructuralPartialEq for BuildDeploymentStatusType
Auto Trait Implementations§
impl Freeze for BuildDeploymentStatusType
impl RefUnwindSafe for BuildDeploymentStatusType
impl Send for BuildDeploymentStatusType
impl Sync for BuildDeploymentStatusType
impl Unpin for BuildDeploymentStatusType
impl UnwindSafe for BuildDeploymentStatusType
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