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