pub type GErrBox<C = DefaultConfig, D = NoData> = Box<GErr<C, D>>;Expand description
Alias for Box of GErr.
For smaller size error type, but heap-allocated, use this.
Just like GErr, C(Config) is defaulted to DefaultConfig and D(Data) is defaulted to NoData.
Aliased Type§
pub struct GErrBox<C = DefaultConfig, D = NoData>(/* private fields */);