Module error

Module error 

Source
Available on crate feature std only.
Expand description

New functions for &(mut) dyn [Error]. (only available with the std feature)

Functions§

new
Create a dyn slice from a slice of a type that implements Error.
new_mut
Create a mutable dyn slice from a mutable slice of a type that implements Error.

Type Aliases§

Dyn
An alias for dyn Error.
Slice
An alias for &dyn [Error] (DynSlice<Dyn>).
SliceMut
An alias for &mut dyn [Error] (DynSliceMut<Dyn>).