Module to_string

Module to_string 

Source
Available on crate feature alloc only.
Expand description

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

Functions§

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

Type Aliases§

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