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