pub trait IntoArray {
// Required method
fn into_array(self) -> Array;
}
Expand description
Consume self
and turn it into an Array
infallibly.
Implementation of this array should never fail.
pub trait IntoArray {
// Required method
fn into_array(self) -> Array;
}
Consume self
and turn it into an Array
infallibly.
Implementation of this array should never fail.