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