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