Module io_read

Module io_read 

Source
Available on crate feature std only.
Expand description

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

Functions§

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

Type Aliases§

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