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