pub trait ValueAsMutArray {
type Array;
// Required method
fn as_array_mut(&mut self) -> Option<&mut Self::Array>;
}
Expand description
Mutatability for Array values
Required Associated Types§
Required Methods§
sourcefn as_array_mut(&mut self) -> Option<&mut Self::Array>
fn as_array_mut(&mut self) -> Option<&mut Self::Array>
Tries to represent the value as an array and returns a mutable reference to it