pub enum DeploymentPriority {
Low,
Normal,
High,
Critical,
}
Expand description
デプロイメントの優先度
Variants§
Trait Implementations§
Source§impl Clone for DeploymentPriority
impl Clone for DeploymentPriority
Source§fn clone(&self) -> DeploymentPriority
fn clone(&self) -> DeploymentPriority
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 DeploymentPriority
impl Debug for DeploymentPriority
Source§impl<'de> Deserialize<'de> for DeploymentPriority
impl<'de> Deserialize<'de> for DeploymentPriority
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 PartialEq for DeploymentPriority
impl PartialEq for DeploymentPriority
Source§impl Serialize for DeploymentPriority
impl Serialize for DeploymentPriority
impl StructuralPartialEq for DeploymentPriority
Auto Trait Implementations§
impl Freeze for DeploymentPriority
impl RefUnwindSafe for DeploymentPriority
impl Send for DeploymentPriority
impl Sync for DeploymentPriority
impl Unpin for DeploymentPriority
impl UnwindSafe for DeploymentPriority
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