Trait rust_faces::ToArray3

source ·
pub trait ToArray3 {
    type Out;

    // Required method
    fn into_array3(self) -> Self::Out;
}

Required Associated Types§

Required Methods§

source

fn into_array3(self) -> Self::Out

Implementations on Foreign Types§

source§

impl<P> ToArray3 for ImageBuffer<P, Vec<P::Subpixel>>where P: Pixel + 'static,

§

type Out = ArrayBase<OwnedRepr<<P as Pixel>::Subpixel>, Dim<[usize; 3]>>

source§

fn into_array3(self) -> Self::Out

Implementors§