pub struct Event {Show 35 fields
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: String
§original_end_time_zone: String
§response_status: ResponseStatus
§i_cal_u_id: String
§reminder_minutes_before_start: i32
§is_reminder_on: bool
§has_attachments: bool
§subject: String
§body: ItemBody
§body_preview: String
§importance: Importance
§sensitivity: Sensitivity
§start: String
§original_start: String
§end: String
§location: Location
§locations: Vec<Location>
§is_all_day: bool
§is_cancelled: bool
§is_organizer: bool
§recurrence: PatternedRecurrence
§response_requested: bool
§series_master_id: String
§show_as: FreeBusyStatus
§_type: EventType
§attendees: Vec<Attendee>
§organizer: Recipient
§web_link: String
§online_meeting_url: String
§calendar: Calendar
§instances: Vec<Event>
§extensions: Vec<Extension>
§attachments: Vec<Attachment>
§single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>
§multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Event
impl<'de> Deserialize<'de> for Event
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more