pub enum InstallationSuspendAction {
Suspend,
}
Expand description
InstallationSuspendAction
JSON schema
{
"type": "string",
"enum": [
"suspend"
]
}
Variants§
Suspend
Trait Implementations§
Source§impl Clone for InstallationSuspendAction
impl Clone for InstallationSuspendAction
Source§fn clone(&self) -> InstallationSuspendAction
fn clone(&self) -> InstallationSuspendAction
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 InstallationSuspendAction
impl Debug for InstallationSuspendAction
Source§impl<'de> Deserialize<'de> for InstallationSuspendAction
impl<'de> Deserialize<'de> for InstallationSuspendAction
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 From<&InstallationSuspendAction> for InstallationSuspendAction
impl From<&InstallationSuspendAction> for InstallationSuspendAction
Source§fn from(value: &InstallationSuspendAction) -> Self
fn from(value: &InstallationSuspendAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for InstallationSuspendAction
impl FromStr for InstallationSuspendAction
Source§impl Hash for InstallationSuspendAction
impl Hash for InstallationSuspendAction
Source§impl Ord for InstallationSuspendAction
impl Ord for InstallationSuspendAction
Source§fn cmp(&self, other: &InstallationSuspendAction) -> Ordering
fn cmp(&self, other: &InstallationSuspendAction) -> 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 InstallationSuspendAction
impl PartialOrd for InstallationSuspendAction
Source§impl ToString for InstallationSuspendAction
impl ToString for InstallationSuspendAction
Source§impl TryFrom<&String> for InstallationSuspendAction
impl TryFrom<&String> for InstallationSuspendAction
Source§impl TryFrom<&str> for InstallationSuspendAction
impl TryFrom<&str> for InstallationSuspendAction
Source§impl TryFrom<String> for InstallationSuspendAction
impl TryFrom<String> for InstallationSuspendAction
impl Copy for InstallationSuspendAction
impl Eq for InstallationSuspendAction
impl StructuralPartialEq for InstallationSuspendAction
Auto Trait Implementations§
impl Freeze for InstallationSuspendAction
impl RefUnwindSafe for InstallationSuspendAction
impl Send for InstallationSuspendAction
impl Sync for InstallationSuspendAction
impl Unpin for InstallationSuspendAction
impl UnwindSafe for InstallationSuspendAction
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