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