pub struct MeetingInfo {Show 17 fields
pub agenda: String,
pub created_at: Option<DateTime<Utc>>,
pub duration: i64,
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 timezone: String,
pub topic: String,
pub tracking_fields: Vec<TrackingFields>,
pub type_: i64,
}
Expand description
Meeting object
Fields§
§agenda: String
Meeting object
created_at: Option<DateTime<Utc>>
Meeting object
duration: i64
Meeting object
h_323_password: String
Meeting object
join_url: String
Meeting object
occurrences: Vec<Occurrence>
Meeting object
password: String
Meeting object
pmi: i64
Meeting object
pre_schedule: bool
Meeting object
recurrence: Option<Recurrence>
Meeting object
settings: Option<MeetingSettings>
Meeting object
start_time: Option<DateTime<Utc>>
Meeting object
start_url: String
Meeting object
timezone: String
Meeting object
topic: String
Meeting object
tracking_fields: Vec<TrackingFields>
Meeting object
type_: i64
Meeting object
Trait Implementations§
Source§impl Clone for MeetingInfo
impl Clone for MeetingInfo
Source§fn clone(&self) -> MeetingInfo
fn clone(&self) -> MeetingInfo
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 MeetingInfo
impl Debug for MeetingInfo
Source§impl<'de> Deserialize<'de> for MeetingInfo
impl<'de> Deserialize<'de> for MeetingInfo
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 MeetingInfo
impl JsonSchema for MeetingInfo
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 MeetingInfo
impl PartialEq for MeetingInfo
Source§impl Serialize for MeetingInfo
impl Serialize for MeetingInfo
impl StructuralPartialEq for MeetingInfo
Auto Trait Implementations§
impl Freeze for MeetingInfo
impl RefUnwindSafe for MeetingInfo
impl Send for MeetingInfo
impl Sync for MeetingInfo
impl Unpin for MeetingInfo
impl UnwindSafe for MeetingInfo
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