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