Trait dryoc::types::ResizableBytes[][src]

pub trait ResizableBytes {
    fn resize(&mut self, new_len: usize, value: u8);
}
Expand description

A byte array which can be resized.

Required methods

Resizes self with new_len elements, populating new values with value.

Implementations on Foreign Types

Implementors