Trait core::slice::bytes::MutableByteVector
[−]
[src]
pub trait MutableByteVector {
fn set_memory(&mut self, value: u8);
}A trait for operations on mutable [u8]s.
Required Methods
fn set_memory(&mut self, value: u8)
Sets all bytes of the receiver to the given value.
Implementors
impl MutableByteVector for [u8]