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