Struct zoom_api::types::MeetingInfoGet
source · pub struct MeetingInfoGet {Show 19 fields
pub agenda: String,
pub created_at: Option<DateTime<Utc>>,
pub duration: i64,
pub encrypted_password: String,
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 status: Option<Status>,
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.
encrypted_password: StringMeeting 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.
status: Option<Status>Meeting object.
timezone: StringMeeting object.
topic: StringMeeting object.
tracking_fields: Vec<TrackingFields>Meeting object.
type_: i64Meeting object.
Trait Implementations
sourceimpl Clone for MeetingInfoGet
impl Clone for MeetingInfoGet
sourcefn clone(&self) -> MeetingInfoGet
fn clone(&self) -> MeetingInfoGet
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 MeetingInfoGet
impl Debug for MeetingInfoGet
sourceimpl<'de> Deserialize<'de> for MeetingInfoGet
impl<'de> Deserialize<'de> for MeetingInfoGet
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 MeetingInfoGet
impl JsonSchema for MeetingInfoGet
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<MeetingInfoGet> for MeetingInfoGet
impl PartialEq<MeetingInfoGet> for MeetingInfoGet
sourcefn eq(&self, other: &MeetingInfoGet) -> bool
fn eq(&self, other: &MeetingInfoGet) -> bool
sourceimpl Serialize for MeetingInfoGet
impl Serialize for MeetingInfoGet
impl StructuralPartialEq for MeetingInfoGet
Auto Trait Implementations
impl RefUnwindSafe for MeetingInfoGet
impl Send for MeetingInfoGet
impl Sync for MeetingInfoGet
impl Unpin for MeetingInfoGet
impl UnwindSafe for MeetingInfoGet
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