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: String
Webinar object.
created_at: Option<DateTime<Utc>>
Webinar object.
duration: i64
Webinar object.
join_url: String
Webinar object.
occurrences: Vec<Occurrence>
Webinar object.
password: String
Webinar object.
recurrence: Option<RecurrenceWebinar>
Webinar object.
settings: Option<WebinarSettings>
Webinar object.
start_time: Option<DateTime<Utc>>
Webinar object.
start_url: String
Webinar object.
timezone: String
Webinar object.
topic: String
Webinar object.
tracking_fields: Vec<SessionUpdateTrackingFields>
Webinar object.
type_: i64
Webinar object.
Trait Implementations§
Source§impl Clone for WebinarInfo
impl Clone for WebinarInfo
Source§fn clone(&self) -> WebinarInfo
fn clone(&self) -> WebinarInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebinarInfo
impl Debug for WebinarInfo
Source§impl<'de> Deserialize<'de> for WebinarInfo
impl<'de> Deserialize<'de> for WebinarInfo
Source§fn 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
Source§impl JsonSchema for WebinarInfo
impl JsonSchema for WebinarInfo
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for WebinarInfo
impl PartialEq for WebinarInfo
Source§impl Serialize for WebinarInfo
impl Serialize for WebinarInfo
impl StructuralPartialEq for WebinarInfo
Auto Trait Implementations§
impl Freeze for WebinarInfo
impl RefUnwindSafe for WebinarInfo
impl Send for WebinarInfo
impl Sync for WebinarInfo
impl Unpin for WebinarInfo
impl UnwindSafe for WebinarInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more