Skip to main content

DtErr

Type Alias DtErr 

Source
pub type DtErr = AnErr<DtErrKind, 16>;
Expand description

Wrapper around AnErr.

A DtErr object is 20 bytes.

Aliased Type§

pub struct DtErr {
    pub kind: DtErrKind,
    pub reason: BufStr<16>,
}

Fields§

§kind: DtErrKind

The error kind.

§reason: BufStr<16>

Accumulated reason string (controlled by REASON_LEN). Can be empty.