Crate ownedbytes

Source

Structs§

OwnedBytes
An OwnedBytes simply wraps an object that owns a slice of data and exposes this data as a slice.

Traits§

StableDeref
An unsafe marker trait for types that deref to a stable address, even when moved. For example, this is implemented by Box, Vec, Rc, Arc and String, among others. Even when a Box is moved, the underlying storage remains at a fixed location.