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