Expand description
Different destinations for log messages.
This is how you select whether the log stream ends up sent over gRPC, written to file, etc.
Structs§
- Stream log messages to an in-memory binary stream.
- The storage used by
BinaryStreamSink
. - Store log messages in memory until you call
LogSink::drain_backlog
. - A sink which forwards all log messages to a callback without any buffering.
- Stream log messages to an
.rrd
file. - Stream log messages to an a remote Rerun server.
- Store log messages directly in memory.
- The storage used by
MemorySink
.
Enums§
- Errors that can occur when creating a
FileSink
.
Traits§
- Where the SDK sends its log messages.