pub enum DependabotAlertCreatedAlertDependencyScope {
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 DependabotAlertCreatedAlertDependencyScope
impl Clone for DependabotAlertCreatedAlertDependencyScope
Source§fn clone(&self) -> DependabotAlertCreatedAlertDependencyScope
fn clone(&self) -> DependabotAlertCreatedAlertDependencyScope
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 DependabotAlertCreatedAlertDependencyScope
impl<'de> Deserialize<'de> for DependabotAlertCreatedAlertDependencyScope
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<&DependabotAlertCreatedAlertDependencyScope> for DependabotAlertCreatedAlertDependencyScope
impl From<&DependabotAlertCreatedAlertDependencyScope> for DependabotAlertCreatedAlertDependencyScope
Source§fn from(value: &DependabotAlertCreatedAlertDependencyScope) -> Self
fn from(value: &DependabotAlertCreatedAlertDependencyScope) -> Self
Converts to this type from the input type.
Source§impl Ord for DependabotAlertCreatedAlertDependencyScope
impl Ord for DependabotAlertCreatedAlertDependencyScope
Source§fn cmp(&self, other: &DependabotAlertCreatedAlertDependencyScope) -> Ordering
fn cmp(&self, other: &DependabotAlertCreatedAlertDependencyScope) -> 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 DependabotAlertCreatedAlertDependencyScope
impl PartialEq for DependabotAlertCreatedAlertDependencyScope
Source§fn eq(&self, other: &DependabotAlertCreatedAlertDependencyScope) -> bool
fn eq(&self, other: &DependabotAlertCreatedAlertDependencyScope) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DependabotAlertCreatedAlertDependencyScope
impl PartialOrd for DependabotAlertCreatedAlertDependencyScope
impl Copy for DependabotAlertCreatedAlertDependencyScope
impl Eq for DependabotAlertCreatedAlertDependencyScope
impl StructuralPartialEq for DependabotAlertCreatedAlertDependencyScope
Auto Trait Implementations§
impl Freeze for DependabotAlertCreatedAlertDependencyScope
impl RefUnwindSafe for DependabotAlertCreatedAlertDependencyScope
impl Send for DependabotAlertCreatedAlertDependencyScope
impl Sync for DependabotAlertCreatedAlertDependencyScope
impl Unpin for DependabotAlertCreatedAlertDependencyScope
impl UnwindSafe for DependabotAlertCreatedAlertDependencyScope
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