[][src]Struct graph_rs_types::entitytypes::Event

pub struct Event {
    pub original_start_time_zone: String,
    pub original_end_time_zone: String,
    pub response_status: ResponseStatus,
    pub i_cal_u_id: String,
    pub reminder_minutes_before_start: i32,
    pub is_reminder_on: bool,
    pub has_attachments: bool,
    pub subject: String,
    pub body: ItemBody,
    pub body_preview: String,
    pub importance: Importance,
    pub sensitivity: Sensitivity,
    pub start: String,
    pub original_start: String,
    pub end: String,
    pub location: Location,
    pub locations: Vec<Location>,
    pub is_all_day: bool,
    pub is_cancelled: bool,
    pub is_organizer: bool,
    pub recurrence: PatternedRecurrence,
    pub response_requested: bool,
    pub series_master_id: String,
    pub show_as: FreeBusyStatus,
    pub _type: EventType,
    pub attendees: Vec<Attendee>,
    pub organizer: Recipient,
    pub web_link: String,
    pub online_meeting_url: String,
    pub calendar: Calendar,
    pub instances: Vec<Event>,
    pub extensions: Vec<Extension>,
    pub attachments: Vec<Attachment>,
    pub single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>,
    pub multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>,
}

Fields

original_start_time_zone: Stringoriginal_end_time_zone: Stringresponse_status: ResponseStatusi_cal_u_id: Stringreminder_minutes_before_start: i32is_reminder_on: boolhas_attachments: boolsubject: Stringbody: ItemBodybody_preview: Stringimportance: Importancesensitivity: Sensitivitystart: Stringoriginal_start: Stringend: Stringlocation: Locationlocations: Vec<Location>is_all_day: boolis_cancelled: boolis_organizer: boolrecurrence: PatternedRecurrenceresponse_requested: boolseries_master_id: Stringshow_as: FreeBusyStatus_type: EventTypeattendees: Vec<Attendee>organizer: Recipientweb_link: Stringonline_meeting_url: Stringcalendar: Calendarinstances: Vec<Event>extensions: Vec<Extension>attachments: Vec<Attachment>single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>

Trait Implementations

impl Eq for Event[src]

impl Clone for Event[src]

impl PartialEq<Event> for Event[src]

impl Debug for Event[src]

impl Serialize for Event[src]

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

Auto Trait Implementations

impl Send for Event

impl Unpin for Event

impl Sync for Event

impl RefUnwindSafe for Event

impl UnwindSafe for Event

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]