Expand description
Non-empty slices.
Re-exports§
pub use slice::Bytes;
pub use slice::Empty;
pub use slice::Slice;
pub use owned::EmptyOwned;
std
oralloc
pub use owned::OwnedBytes;
std
oralloc
pub use owned::OwnedSlice;
std
oralloc
Modules§
- macros
- Macros for creating non-empty slices in
const
contexts. - owned
std
oralloc
- Non-empty
Vec<T>
. - slice
- Non-empty slices.
Macros§
- const_
bytes - Similar to
const_slice!
, but constructsBytes
. - const_
slice - Constantly constructs
Slice
from the given slice, failing compilation if the slice is empty.