pub struct LogStore { /* private fields */ }Available on crate feature
store only.Expand description
Thread-safe append-only in-memory log store.
The store keeps all captured entries in memory until it is dropped. It does not apply retention, eviction, or size limits.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for LogStore
impl !UnwindSafe for LogStore
impl Freeze for LogStore
impl Send for LogStore
impl Sync for LogStore
impl Unpin for LogStore
impl UnsafeUnpin for LogStore
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