Module buf_read

Module buf_read 

Source
Available on crate feature std only.
Expand description

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

Functions§

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

Type Aliases§

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