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