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