Trait collections::slice::bytes::MutableByteVector
[−]
[src]
pub trait MutableByteVector {
fn set_memory(&mut self, value: u8);
}Deprecated since 1.6.0
: unidiomatic functions not pulling their weight
A trait for operations on mutable [u8]s.
Required Methods
fn set_memory(&mut self, value: u8)
Deprecated since 1.6.0
: unidiomatic functions not pulling their weight
Sets all bytes of the receiver to the given value.