pub struct EsiNotification {
pub notification_id: i64,
pub notification_type: String,
pub sender_id: i64,
pub sender_type: String,
pub timestamp: DateTime<Utc>,
pub is_read: Option<bool>,
pub text: Option<String>,
}Expand description
A character notification.
Fields§
§notification_id: i64§notification_type: String§sender_id: i64§sender_type: String§timestamp: DateTime<Utc>§is_read: Option<bool>§text: Option<String>Trait Implementations§
Source§impl Clone for EsiNotification
impl Clone for EsiNotification
Source§fn clone(&self) -> EsiNotification
fn clone(&self) -> EsiNotification
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 EsiNotification
impl Debug for EsiNotification
Source§impl<'de> Deserialize<'de> for EsiNotification
impl<'de> Deserialize<'de> for EsiNotification
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 EsiNotification
impl RefUnwindSafe for EsiNotification
impl Send for EsiNotification
impl Sync for EsiNotification
impl Unpin for EsiNotification
impl UnsafeUnpin for EsiNotification
impl UnwindSafe for EsiNotification
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