Trait IntoArray

Source
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.

Required Methods§

Implementations on Foreign Types§

Source§

impl IntoArray for &MaskValues

Source§

impl IntoArray for Mask

Source§

impl<T: NativePType> IntoArray for Buffer<T>

Source§

impl<T: NativePType> IntoArray for BufferMut<T>

Implementors§