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