pub trait AsAlignedMut<A: Alignment>: AsAligned<A> {
    fn as_aligned_mut(&mut self) -> &mut AlignedSlice<A>;
}
Expand description

Allows narrowing the alignment of a &mut AlignedSlice

Just the same as AsAligned, but mut.

Required Methods

Implementations on Foreign Types

Implementors