pub struct EventLog {
pub events: Vec<LogEvent>,
pub max_events: usize,
pub tick: u64,
pub next_id: u64,
pub enabled: bool,
}Fields§
§events: Vec<LogEvent>§max_events: usize§tick: u64§next_id: u64§enabled: boolAuto Trait Implementations§
impl Freeze for EventLog
impl RefUnwindSafe for EventLog
impl Send for EventLog
impl Sync for EventLog
impl Unpin for EventLog
impl UnsafeUnpin for EventLog
impl UnwindSafe for EventLog
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