pub type StringLog = FmtLog<String>;Expand description
A logger that writes to a string.
Aliased Type§
pub struct StringLog {
pub buf: Mutex<RawMutex, String>,
pub total: AtomicUsize,
}Fields§
§buf: Mutex<RawMutex, String>The writer to log to.
total: AtomicUsizeThe total number of bytes allocated.