pub trait AllocErr: Debug + Display {
    fn alloc_err() -> Self;
}
Expand description

Trait describing (system) allocation errors.

Mostly meant as an extension trait to SysErr to allow for allocation errors.

Required Methods

Implementors