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