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