pub unsafe trait Extendable: Concatenable { }Expand description
A slice that can be extended with arbitrary items.
§Safety
The concatenation of a slice with an additional item must be a valid slice.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
impl Extendable for BStr
Available on crate feature
bstr only.