pub trait AsWriteSized<'a, const N: usize>:
    'a
    + AsReadSized<'a, N>
    + DerefMut
    + AsMut<[u8; N]>
    + BorrowMut<[u8; N]> { }
Expand description

Indicates we can dereference a sized item as a mutable byte array.

Implementors§

source§

impl<'a, const N: usize> AsWriteSized<'a, N> for WriteGuardSized<'a, N>