Struct zoom_api::types::WebinarInfo
source · pub struct WebinarInfo {Show 14 fields
pub agenda: String,
pub created_at: Option<DateTime<Utc>>,
pub duration: i64,
pub join_url: String,
pub occurrences: Vec<Occurrence>,
pub password: String,
pub recurrence: Option<RecurrenceWebinar>,
pub settings: Option<WebinarSettings>,
pub start_time: Option<DateTime<Utc>>,
pub start_url: String,
pub timezone: String,
pub topic: String,
pub tracking_fields: Vec<SessionUpdateTrackingFields>,
pub type_: i64,
}Expand description
Webinar object.
Fields
agenda: StringWebinar object.
created_at: Option<DateTime<Utc>>Webinar object.
duration: i64Webinar object.
join_url: StringWebinar object.
occurrences: Vec<Occurrence>Webinar object.
password: StringWebinar object.
recurrence: Option<RecurrenceWebinar>Webinar object.
settings: Option<WebinarSettings>Webinar object.
start_time: Option<DateTime<Utc>>Webinar object.
start_url: StringWebinar object.
timezone: StringWebinar object.
topic: StringWebinar object.
tracking_fields: Vec<SessionUpdateTrackingFields>Webinar object.
type_: i64Webinar object.
Trait Implementations
sourceimpl Clone for WebinarInfo
impl Clone for WebinarInfo
sourcefn clone(&self) -> WebinarInfo
fn clone(&self) -> WebinarInfo
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 WebinarInfo
impl Debug for WebinarInfo
sourceimpl<'de> Deserialize<'de> for WebinarInfo
impl<'de> Deserialize<'de> for WebinarInfo
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 WebinarInfo
impl JsonSchema for WebinarInfo
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<WebinarInfo> for WebinarInfo
impl PartialEq<WebinarInfo> for WebinarInfo
sourcefn eq(&self, other: &WebinarInfo) -> bool
fn eq(&self, other: &WebinarInfo) -> bool
sourceimpl Serialize for WebinarInfo
impl Serialize for WebinarInfo
impl StructuralPartialEq for WebinarInfo
Auto Trait Implementations
impl RefUnwindSafe for WebinarInfo
impl Send for WebinarInfo
impl Sync for WebinarInfo
impl Unpin for WebinarInfo
impl UnwindSafe for WebinarInfo
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