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