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