Struct zoom_api::types::MeetingCreate
source · pub struct MeetingCreate {Show 13 fields
pub agenda: String,
pub duration: i64,
pub password: String,
pub pre_schedule: bool,
pub recurrence: Option<Recurrence>,
pub schedule_for: String,
pub settings: Option<MeetingCreateSettings>,
pub start_time: Option<DateTime<Utc>>,
pub template_id: String,
pub timezone: String,
pub topic: String,
pub tracking_fields: Vec<MeetingCreateTrackingFields>,
pub type_: i64,
}Expand description
Base object for meeting.
Fields
agenda: StringBase object for meeting.
duration: i64Base object for meeting.
password: StringBase object for meeting.
pre_schedule: boolBase object for meeting.
recurrence: Option<Recurrence>Base object for meeting.
schedule_for: StringBase object for meeting.
settings: Option<MeetingCreateSettings>Base object for meeting.
start_time: Option<DateTime<Utc>>Base object for meeting.
template_id: StringBase object for meeting.
timezone: StringBase object for meeting.
topic: StringBase object for meeting.
tracking_fields: Vec<MeetingCreateTrackingFields>Base object for meeting.
type_: i64Base object for meeting.
Trait Implementations
sourceimpl Clone for MeetingCreate
impl Clone for MeetingCreate
sourcefn clone(&self) -> MeetingCreate
fn clone(&self) -> MeetingCreate
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 MeetingCreate
impl Debug for MeetingCreate
sourceimpl<'de> Deserialize<'de> for MeetingCreate
impl<'de> Deserialize<'de> for MeetingCreate
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 MeetingCreate
impl JsonSchema for MeetingCreate
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<MeetingCreate> for MeetingCreate
impl PartialEq<MeetingCreate> for MeetingCreate
sourcefn eq(&self, other: &MeetingCreate) -> bool
fn eq(&self, other: &MeetingCreate) -> bool
sourceimpl Serialize for MeetingCreate
impl Serialize for MeetingCreate
impl StructuralPartialEq for MeetingCreate
Auto Trait Implementations
impl RefUnwindSafe for MeetingCreate
impl Send for MeetingCreate
impl Sync for MeetingCreate
impl Unpin for MeetingCreate
impl UnwindSafe for MeetingCreate
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