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