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