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§