Structs§
- Atemporal
Message Formatter - A high-performance, stateful formatter that produces undated logs.
- Boxed
Fmt - A specialized
Servicefor dynamically dispatched string-based logging. - Cerr
- A logging
Servicethat targets the standard error stream (std::io::stderr). - Cout
- A logging
Servicethat targets the standard output stream (std::io::stdout). - Fmt
- A thread-safe logging
Servicefor string-based output destinations. - IoWrite
- A thread-safe
Servicefor byte-stream logging destinations. - Standard
Message Formatter - A high-performance, stateful formatter that produces RFC 3339 compliant logs.
Traits§
- Message
Formatter - Trait defining the behavior for formatting log messages.
Type Aliases§
- BoxedIo
- A type alias for an
IoWriteservice using a dynamic trait object. - Buffered
File - A type alias for an
IoWriteservice writing specifically to astd::io::BufWriter<std::fs::File>. - File
- A type alias for an
IoWriteservice writing specifically to astd::fs::File. - Standard
Boxed Fmt - A
BoxedFmtservice pre-configured with theStandardMessageFormatter. - Standard
Boxed Io - A pre-configured
BoxedIoservice using the crate’sStandardMessageFormatter. - Standard
Buffered File - A pre-configured
BufferedFileusing the crate’sStandardMessageFormatter. - Standard
Cerr - A
Cerrservice pre-configured with theStandardMessageFormatter. - Standard
Cout - A
Coutservice pre-configured with theStandardMessageFormatter. - Standard
File - A pre-configured
Fileusing the crate’sStandardMessageFormatter. - Standard
String Fmt - A
StringFmtservice pre-configured with theStandardMessageFormatter. - String
Fmt - A specialized alias for logging directly into a
String.