Struct google_calendar3::api::CreateConferenceRequest[][src]

pub struct CreateConferenceRequest {
    pub conference_solution_key: Option<ConferenceSolutionKey>,
    pub request_id: Option<String>,
    pub status: Option<ConferenceRequestStatus>,
}

There is no detailed description.

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

Fields

conference_solution_key: Option<ConferenceSolutionKey>

The conference solution, such as Hangouts or Google Meet.

request_id: Option<String>

The client-generated unique ID for this request. Clients should regenerate this ID for every new request. If an ID provided is the same as for the previous request, the request is ignored.

status: Option<ConferenceRequestStatus>

The status of the conference create request.

Trait Implementations

impl Clone for CreateConferenceRequest[src]

impl Debug for CreateConferenceRequest[src]

impl Default for CreateConferenceRequest[src]

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

impl Part for CreateConferenceRequest[src]

impl Serialize for CreateConferenceRequest[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.