Struct zoom_api::types::MeetingInfo
source · pub struct MeetingInfo {Show 17 fields
pub agenda: String,
pub created_at: Option<DateTime<Utc>>,
pub duration: i64,
pub h_323_password: String,
pub join_url: String,
pub occurrences: Vec<Occurrence>,
pub password: String,
pub pmi: i64,
pub pre_schedule: bool,
pub recurrence: Option<Recurrence>,
pub settings: Option<MeetingSettings>,
pub start_time: Option<DateTime<Utc>>,
pub start_url: String,
pub timezone: String,
pub topic: String,
pub tracking_fields: Vec<TrackingFields>,
pub type_: i64,
}Expand description
Meeting object
Fields
agenda: StringMeeting object
created_at: Option<DateTime<Utc>>Meeting object
duration: i64Meeting object
h_323_password: StringMeeting object
join_url: StringMeeting object
occurrences: Vec<Occurrence>Meeting object
password: StringMeeting object
pmi: i64Meeting object
pre_schedule: boolMeeting object
recurrence: Option<Recurrence>Meeting object
settings: Option<MeetingSettings>Meeting object
start_time: Option<DateTime<Utc>>Meeting object
start_url: StringMeeting object
timezone: StringMeeting object
topic: StringMeeting object
tracking_fields: Vec<TrackingFields>Meeting object
type_: i64Meeting object
Trait Implementations
sourceimpl Clone for MeetingInfo
impl Clone for MeetingInfo
sourcefn clone(&self) -> MeetingInfo
fn clone(&self) -> MeetingInfo
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 MeetingInfo
impl Debug for MeetingInfo
sourceimpl<'de> Deserialize<'de> for MeetingInfo
impl<'de> Deserialize<'de> for MeetingInfo
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 JsonSchema for MeetingInfo
impl JsonSchema for MeetingInfo
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<MeetingInfo> for MeetingInfo
impl PartialEq<MeetingInfo> for MeetingInfo
sourcefn eq(&self, other: &MeetingInfo) -> bool
fn eq(&self, other: &MeetingInfo) -> bool
sourceimpl Serialize for MeetingInfo
impl Serialize for MeetingInfo
impl StructuralPartialEq for MeetingInfo
Auto Trait Implementations
impl RefUnwindSafe for MeetingInfo
impl Send for MeetingInfo
impl Sync for MeetingInfo
impl Unpin for MeetingInfo
impl UnwindSafe for MeetingInfo
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