pub struct EsiCalendarEvent {
pub event_id: i64,
pub event_date: DateTime<Utc>,
pub title: String,
pub importance: Option<i32>,
pub event_response: Option<String>,
}Expand description
A calendar event summary.
Fields§
§event_id: i64§event_date: DateTime<Utc>§title: String§importance: Option<i32>§event_response: Option<String>Trait Implementations§
Source§impl Clone for EsiCalendarEvent
impl Clone for EsiCalendarEvent
Source§fn clone(&self) -> EsiCalendarEvent
fn clone(&self) -> EsiCalendarEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EsiCalendarEvent
impl Debug for EsiCalendarEvent
Source§impl<'de> Deserialize<'de> for EsiCalendarEvent
impl<'de> Deserialize<'de> for EsiCalendarEvent
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
Auto Trait Implementations§
impl Freeze for EsiCalendarEvent
impl RefUnwindSafe for EsiCalendarEvent
impl Send for EsiCalendarEvent
impl Sync for EsiCalendarEvent
impl Unpin for EsiCalendarEvent
impl UnsafeUnpin for EsiCalendarEvent
impl UnwindSafe for EsiCalendarEvent
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