pub enum DependabotAlertState {
Dismissed,
Fixed,
Open,
AutoDismissed,
}
Expand description
The state of the Dependabot alert.
JSON schema
{
"description": "The state of the Dependabot alert.",
"type": "string",
"enum": [
"dismissed",
"fixed",
"open",
"auto_dismissed"
]
}
Variants§
Trait Implementations§
Source§impl Clone for DependabotAlertState
impl Clone for DependabotAlertState
Source§fn clone(&self) -> DependabotAlertState
fn clone(&self) -> DependabotAlertState
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 Debug for DependabotAlertState
impl Debug for DependabotAlertState
Source§impl<'de> Deserialize<'de> for DependabotAlertState
impl<'de> Deserialize<'de> for DependabotAlertState
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<&DependabotAlertState> for DependabotAlertState
impl From<&DependabotAlertState> for DependabotAlertState
Source§fn from(value: &DependabotAlertState) -> Self
fn from(value: &DependabotAlertState) -> Self
Converts to this type from the input type.
Source§impl FromStr for DependabotAlertState
impl FromStr for DependabotAlertState
Source§impl Hash for DependabotAlertState
impl Hash for DependabotAlertState
Source§impl Ord for DependabotAlertState
impl Ord for DependabotAlertState
Source§fn cmp(&self, other: &DependabotAlertState) -> Ordering
fn cmp(&self, other: &DependabotAlertState) -> 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 DependabotAlertState
impl PartialEq for DependabotAlertState
Source§impl PartialOrd for DependabotAlertState
impl PartialOrd for DependabotAlertState
Source§impl Serialize for DependabotAlertState
impl Serialize for DependabotAlertState
Source§impl ToString for DependabotAlertState
impl ToString for DependabotAlertState
Source§impl TryFrom<&String> for DependabotAlertState
impl TryFrom<&String> for DependabotAlertState
Source§impl TryFrom<&str> for DependabotAlertState
impl TryFrom<&str> for DependabotAlertState
Source§impl TryFrom<String> for DependabotAlertState
impl TryFrom<String> for DependabotAlertState
impl Copy for DependabotAlertState
impl Eq for DependabotAlertState
impl StructuralPartialEq for DependabotAlertState
Auto Trait Implementations§
impl Freeze for DependabotAlertState
impl RefUnwindSafe for DependabotAlertState
impl Send for DependabotAlertState
impl Sync for DependabotAlertState
impl Unpin for DependabotAlertState
impl UnwindSafe for DependabotAlertState
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