[][src]Struct google_calendar3::ConferenceData

pub struct ConferenceData {
    pub create_request: Option<CreateConferenceRequest>,
    pub entry_points: Option<Vec<EntryPoint>>,
    pub conference_solution: Option<ConferenceSolution>,
    pub parameters: Option<ConferenceParameters>,
    pub signature: Option<String>,
    pub notes: Option<String>,
    pub conference_id: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

create_request: Option<CreateConferenceRequest>

A request to generate a new conference and attach it to the event. The data is generated asynchronously. To see whether the data is present check the status field. Either conferenceSolution and at least one entryPoint, or createRequest is required.

entry_points: Option<Vec<EntryPoint>>

Information about individual conference entry points, such as URLs or phone numbers. All of them must belong to the same conference. Either conferenceSolution and at least one entryPoint, or createRequest is required.

conference_solution: Option<ConferenceSolution>

The conference solution, such as Hangouts or Hangouts Meet. Unset for a conference with a failed create request. Either conferenceSolution and at least one entryPoint, or createRequest is required.

parameters: Option<ConferenceParameters>

Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming.

signature: Option<String>

The signature of the conference data. Generated on server side. Must be preserved while copying the conference data between events, otherwise the conference data will not be copied. Unset for a conference with a failed create request. Optional for a conference with a pending create request.

notes: Option<String>

Additional notes (such as instructions from the domain administrator, legal notices) to display to the user. Can contain HTML. The maximum length is 2048 characters. Optional.

conference_id: Option<String>

The ID of the conference. Can be used by developers to keep track of conferences, should not be displayed to users. Values for solution types:

  • "eventHangout": unset.
  • "eventNamedHangout": the name of the Hangout.
  • "hangoutsMeet": the 10-letter meeting code, for example "aaa-bbbb-ccc". Optional.

Trait Implementations

impl Part for ConferenceData[src]

impl Default for ConferenceData[src]

impl Clone for ConferenceData[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ConferenceData[src]

impl Serialize for ConferenceData[src]

impl<'de> Deserialize<'de> for ConferenceData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]