pub struct CharacterNewContactNotification {
pub message: String,
pub notification_id: i64,
pub send_date: DateTime<Utc>,
pub sender_character_id: i64,
pub standing_level: f64,
}Expand description
Notification when character has been added to someone’s contact list
§Documentation
Fields§
§message: StringThe message content of the notification
notification_id: i64The unique ID of the notification
send_date: DateTime<Utc>The timestamp when the notification was sent
sender_character_id: i64The character ID of the notification sender
standing_level: f64Number representing contact standing level with the sender
Trait Implementations§
Source§impl Clone for CharacterNewContactNotification
impl Clone for CharacterNewContactNotification
Source§fn clone(&self) -> CharacterNewContactNotification
fn clone(&self) -> CharacterNewContactNotification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for CharacterNewContactNotification
impl<'de> Deserialize<'de> for CharacterNewContactNotification
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
Source§impl PartialEq for CharacterNewContactNotification
impl PartialEq for CharacterNewContactNotification
Source§fn eq(&self, other: &CharacterNewContactNotification) -> bool
fn eq(&self, other: &CharacterNewContactNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CharacterNewContactNotification
Auto Trait Implementations§
impl Freeze for CharacterNewContactNotification
impl RefUnwindSafe for CharacterNewContactNotification
impl Send for CharacterNewContactNotification
impl Sync for CharacterNewContactNotification
impl Unpin for CharacterNewContactNotification
impl UnwindSafe for CharacterNewContactNotification
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