Trait dryoc::types::MutByteArray[][src]

pub trait MutByteArray<const LENGTH: usize>: ByteArray<LENGTH> + MutBytes {
    fn as_mut_array(&mut self) -> &mut [u8; LENGTH];
}
Expand description

Fixed-length mutable byte array.

Required methods

Returns a mutable reference to the underlying fixed-length byte array.

Implementations on Foreign Types

Implementors