pub struct SimLogger {
pub entries: Vec<SimLogEntry>,
pub flush_interval: usize,
/* private fields */
}Expand description
Append-only simulation logger with CSV and JSON serialisation.
Fields§
§entries: Vec<SimLogEntry>All logged entries in chronological order.
flush_interval: usizeHow many entries to buffer before auto-flushing (0 = manual only).
Implementations§
Source§impl SimLogger
impl SimLogger
Sourcepub fn with_flush_interval(flush_interval: usize) -> Self
pub fn with_flush_interval(flush_interval: usize) -> Self
Create a logger with an auto-flush interval.
Sourcepub fn append(&mut self, entry: SimLogEntry)
pub fn append(&mut self, entry: SimLogEntry)
Append a new entry.
Sourcepub fn all_custom_keys(&self) -> Vec<String>
pub fn all_custom_keys(&self) -> Vec<String>
Collect all unique custom field keys across all entries (sorted).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimLogger
impl RefUnwindSafe for SimLogger
impl Send for SimLogger
impl Sync for SimLogger
impl Unpin for SimLogger
impl UnsafeUnpin for SimLogger
impl UnwindSafe for SimLogger
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.