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