Struct google_calendar3::api::ConferenceData[][src]

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

There is no detailed description.

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

Fields

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”.
  • “addOn”: defined by 3P conference provider. Optional.
conference_solution: Option<ConferenceSolution>

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

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.

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.

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.

Trait Implementations

impl Clone for ConferenceData[src]

impl Debug for ConferenceData[src]

impl Default for ConferenceData[src]

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

impl Part for ConferenceData[src]

impl Serialize for ConferenceData[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.