pub struct NotificationCharacter {
pub notification_id: i64,
pub character_id: Uuid,
pub delivered: bool,
pub delivered_ts: Option<DateTime<Utc>>,
pub tg_message_id: Option<i64>,
}Fields§
§notification_id: i64§character_id: Uuid§delivered: bool§delivered_ts: Option<DateTime<Utc>>§tg_message_id: Option<i64>Auto Trait Implementations§
impl Freeze for NotificationCharacter
impl RefUnwindSafe for NotificationCharacter
impl Send for NotificationCharacter
impl Sync for NotificationCharacter
impl Unpin for NotificationCharacter
impl UnwindSafe for NotificationCharacter
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