Expand description

Logic common to all fat pointers.

Re-exports

pub use self::slice_ref as Ref;
pub use self::slice_mut as Mut;
pub use slice_boxed as Box;
alloc

Structs

Box<[T]> (fat pointer to a slice), but with a guaranteed #[repr(C)] layout.
Box<[T]> (fat pointer to a slice), but with a guaranteed #[repr(C)] layout.
&'lt mut [T] but with a guaranteed #[repr(C)] layout.
&'lt mut [T] but with a guaranteed #[repr(C)] layout.
Like slice_ref and slice_mut, but with any lifetime attached whatsoever.
Like slice_ref and slice_mut, but with any lifetime attached whatsoever.
&'lt [T] but with a guaranteed #[repr(C)] layout.
&'lt [T] but with a guaranteed #[repr(C)] layout.