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