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