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