pub struct CharacterNotifications {
pub is_read: bool,
pub notification_id: i64,
pub sender_id: i32,
pub text: String,
pub timestamp: DateTime<Utc>,
pub notification_type: String,
}Fields§
§is_read: bool§notification_id: i64§sender_id: i32§text: String§timestamp: DateTime<Utc>§notification_type: StringTrait Implementations§
Source§impl Debug for CharacterNotifications
impl Debug for CharacterNotifications
Source§impl<'de> Deserialize<'de> for CharacterNotifications
impl<'de> Deserialize<'de> for CharacterNotifications
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 CharacterNotifications
impl RefUnwindSafe for CharacterNotifications
impl Send for CharacterNotifications
impl Sync for CharacterNotifications
impl Unpin for CharacterNotifications
impl UnwindSafe for CharacterNotifications
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