pub enum UpdateMemberRoleRequestRole {
Owner,
Admin,
Member,
}Expand description
UpdateMemberRoleRequestRole
JSON schema
{
"type": "string",
"enum": [
"owner",
"admin",
"member"
]
}Variants§
Trait Implementations§
Source§impl Clone for UpdateMemberRoleRequestRole
impl Clone for UpdateMemberRoleRequestRole
Source§fn clone(&self) -> UpdateMemberRoleRequestRole
fn clone(&self) -> UpdateMemberRoleRequestRole
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UpdateMemberRoleRequestRole
Source§impl Debug for UpdateMemberRoleRequestRole
impl Debug for UpdateMemberRoleRequestRole
Source§impl<'de> Deserialize<'de> for UpdateMemberRoleRequestRole
impl<'de> Deserialize<'de> for UpdateMemberRoleRequestRole
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
impl Eq for UpdateMemberRoleRequestRole
Source§impl Hash for UpdateMemberRoleRequestRole
impl Hash for UpdateMemberRoleRequestRole
Source§impl Ord for UpdateMemberRoleRequestRole
impl Ord for UpdateMemberRoleRequestRole
Source§fn cmp(&self, other: &UpdateMemberRoleRequestRole) -> Ordering
fn cmp(&self, other: &UpdateMemberRoleRequestRole) -> Ordering
1.21.0 (const: unstable) · 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 UpdateMemberRoleRequestRole
impl PartialEq for UpdateMemberRoleRequestRole
Source§fn eq(&self, other: &UpdateMemberRoleRequestRole) -> bool
fn eq(&self, other: &UpdateMemberRoleRequestRole) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for UpdateMemberRoleRequestRole
impl PartialOrd for UpdateMemberRoleRequestRole
impl StructuralPartialEq for UpdateMemberRoleRequestRole
Source§impl TryFrom<&String> for UpdateMemberRoleRequestRole
impl TryFrom<&String> for UpdateMemberRoleRequestRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for UpdateMemberRoleRequestRole
impl TryFrom<&str> for UpdateMemberRoleRequestRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for UpdateMemberRoleRequestRole
impl TryFrom<String> for UpdateMemberRoleRequestRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for UpdateMemberRoleRequestRole
impl RefUnwindSafe for UpdateMemberRoleRequestRole
impl Send for UpdateMemberRoleRequestRole
impl Sync for UpdateMemberRoleRequestRole
impl Unpin for UpdateMemberRoleRequestRole
impl UnsafeUnpin for UpdateMemberRoleRequestRole
impl UnwindSafe for UpdateMemberRoleRequestRole
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