Crate derail_report

Crate derail_report 

Source
Expand description

Tools for reporting derail::Errors.

These functions operate on iterators of Errors. To report a single Error, make use of core::iter::once.

derail-report is #![no_std]-compatible, though it depends on alloc by default. Disable the alloc feature if this is undesirable.

Structs§

HeapFactory
A BufferFactory that creates heap-allocated buffers.
StackFactory
A BufferFactory that creates stack-allocated buffers.

Traits§

BufferFactory
A factory that creates buffers.

Functions§

multiline
Displays Errors on multiple lines. Suitable for user-facing output.
oneline
Displays Errors on one line. Suitable for tracing.