Enum zoom_api::types::MeetingsType
source · pub enum MeetingsType {
Live,
Scheduled,
Upcoming,
FallthroughString,
}Expand description
The meeting types: scheduled - This includes all valid past meetings (unexpired), live meetings and upcoming scheduled meetings. It is equivalent to the combined list of “Previous Meetings” and “Upcoming Meetings” displayed in the user’s Meetings page on the Zoom Web Portal.live - All the ongoing meetings.upcoming - All upcoming meetings including live meetings.
Variants
Live
Scheduled
Upcoming
FallthroughString
Trait Implementations
sourceimpl Clone for MeetingsType
impl Clone for MeetingsType
sourcefn clone(&self) -> MeetingsType
fn clone(&self) -> MeetingsType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MeetingsType
impl Debug for MeetingsType
sourceimpl Default for MeetingsType
impl Default for MeetingsType
sourcefn default() -> MeetingsType
fn default() -> MeetingsType
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MeetingsType
impl<'de> Deserialize<'de> for MeetingsType
sourcefn 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
sourceimpl Display for MeetingsType
impl Display for MeetingsType
sourceimpl JsonSchema for MeetingsType
impl JsonSchema for MeetingsType
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<MeetingsType> for MeetingsType
impl PartialEq<MeetingsType> for MeetingsType
sourcefn eq(&self, other: &MeetingsType) -> bool
fn eq(&self, other: &MeetingsType) -> bool
sourceimpl Serialize for MeetingsType
impl Serialize for MeetingsType
impl StructuralPartialEq for MeetingsType
Auto Trait Implementations
impl RefUnwindSafe for MeetingsType
impl Send for MeetingsType
impl Sync for MeetingsType
impl Unpin for MeetingsType
impl UnwindSafe for MeetingsType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more