pub struct NotificationSystem {
pub notifications: Vec<Notification>,
pub next_id: u64,
pub current_time: f64,
pub max_notifications: usize,
}Fields§
§notifications: Vec<Notification>§next_id: u64§current_time: f64§max_notifications: usizeAuto Trait Implementations§
impl Freeze for NotificationSystem
impl RefUnwindSafe for NotificationSystem
impl Send for NotificationSystem
impl Sync for NotificationSystem
impl Unpin for NotificationSystem
impl UnsafeUnpin for NotificationSystem
impl UnwindSafe for NotificationSystem
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