Struct google_calendar3::api::EntryPoint[][src]

pub struct EntryPoint {
    pub access_code: Option<String>,
    pub entry_point_features: Option<Vec<String>>,
    pub entry_point_type: Option<String>,
    pub label: Option<String>,
    pub meeting_code: Option<String>,
    pub passcode: Option<String>,
    pub password: Option<String>,
    pub pin: Option<String>,
    pub region_code: Option<String>,
    pub uri: Option<String>,
}

There is no detailed description.

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

Fields

access_code: Option<String>

The access code to access the conference. The maximum length is 128 characters. When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed. Optional.

entry_point_features: Option<Vec<String>>

Features of the entry point, such as being toll or toll-free. One entry point can have multiple features. However, toll and toll-free cannot be both set on the same entry point.

entry_point_type: Option<String>

The type of the conference entry point. Possible values are:

label: Option<String>

The label for the URI. Visible to end users. Not localized. The maximum length is 512 characters. Examples:

meeting_code: Option<String>

The meeting code to access the conference. The maximum length is 128 characters. When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed. Optional.

passcode: Option<String>

The passcode to access the conference. The maximum length is 128 characters. When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.

password: Option<String>

The password to access the conference. The maximum length is 128 characters. When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed. Optional.

pin: Option<String>

The PIN to access the conference. The maximum length is 128 characters. When creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed. Optional.

region_code: Option<String>

The CLDR/ISO 3166 region code for the country associated with this phone access. Example: "SE" for Sweden. Calendar backend will populate this field only for EntryPointType.PHONE.

uri: Option<String>

The URI of the entry point. The maximum length is 1300 characters. Format:

Trait Implementations

impl Clone for EntryPoint[src]

impl Debug for EntryPoint[src]

impl Default for EntryPoint[src]

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

impl Part for EntryPoint[src]

impl Serialize for EntryPoint[src]

Auto Trait Implementations

impl RefUnwindSafe for EntryPoint[src]

impl Send for EntryPoint[src]

impl Sync for EntryPoint[src]

impl Unpin for EntryPoint[src]

impl UnwindSafe for EntryPoint[src]

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.