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