pub struct Log<'a> {
pub entries: Vec<Event<'a>>,
}Expand description
A whole log, in memory. This structure does not specify its use. It may represent a private query, or the log of a channel.
Fields§
§entries: Vec<Event<'a>>Auto Trait Implementations§
impl<'a> Freeze for Log<'a>
impl<'a> RefUnwindSafe for Log<'a>
impl<'a> Send for Log<'a>
impl<'a> Sync for Log<'a>
impl<'a> Unpin for Log<'a>
impl<'a> UnwindSafe for Log<'a>
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