pub enum EmailInviteInputType {
Email,
}Expand description
EmailInviteInputType
JSON schema
{
"type": "string",
"enum": [
"email"
]
}Variants§
Trait Implementations§
Source§impl Clone for EmailInviteInputType
impl Clone for EmailInviteInputType
Source§fn clone(&self) -> EmailInviteInputType
fn clone(&self) -> EmailInviteInputType
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 EmailInviteInputType
Source§impl Debug for EmailInviteInputType
impl Debug for EmailInviteInputType
Source§impl<'de> Deserialize<'de> for EmailInviteInputType
impl<'de> Deserialize<'de> for EmailInviteInputType
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 Display for EmailInviteInputType
impl Display for EmailInviteInputType
impl Eq for EmailInviteInputType
Source§impl From<&EmailInviteInputType> for EmailInviteInputType
impl From<&EmailInviteInputType> for EmailInviteInputType
Source§fn from(value: &EmailInviteInputType) -> Self
fn from(value: &EmailInviteInputType) -> Self
Converts to this type from the input type.
Source§impl FromStr for EmailInviteInputType
impl FromStr for EmailInviteInputType
Source§impl Hash for EmailInviteInputType
impl Hash for EmailInviteInputType
Source§impl Ord for EmailInviteInputType
impl Ord for EmailInviteInputType
Source§fn cmp(&self, other: &EmailInviteInputType) -> Ordering
fn cmp(&self, other: &EmailInviteInputType) -> 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 EmailInviteInputType
impl PartialEq for EmailInviteInputType
Source§fn eq(&self, other: &EmailInviteInputType) -> bool
fn eq(&self, other: &EmailInviteInputType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EmailInviteInputType
impl PartialOrd for EmailInviteInputType
Source§impl Serialize for EmailInviteInputType
impl Serialize for EmailInviteInputType
impl StructuralPartialEq for EmailInviteInputType
Source§impl TryFrom<&String> for EmailInviteInputType
impl TryFrom<&String> for EmailInviteInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EmailInviteInputType
impl TryFrom<&str> for EmailInviteInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EmailInviteInputType
impl TryFrom<String> for EmailInviteInputType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for EmailInviteInputType
impl RefUnwindSafe for EmailInviteInputType
impl Send for EmailInviteInputType
impl Sync for EmailInviteInputType
impl Unpin for EmailInviteInputType
impl UnsafeUnpin for EmailInviteInputType
impl UnwindSafe for EmailInviteInputType
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