Trait scratchpad::ConcatenateSlice [] [src]

pub trait ConcatenateSlice: SliceLike { }

Extension of the SliceLike trait used to mark DSTs for which concatenation can safely be performed by concatenating the underlying slice type.

This is used as a constraint for functions such as Allocation::concat() and MarkerFront::append().

Implementations on Foreign Types

impl<T> ConcatenateSlice for [T]
[src]

impl ConcatenateSlice for str
[src]

Implementors