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