Trait FromRawBuffers

Source
pub trait FromRawBuffers<N, G>: Sized {
    type Error: Debug;

    // Required method
    fn from_raw_buffers<I, J>(
        indices: I,
        vertices: J,
    ) -> Result<Self, Self::Error>
       where I: IntoIterator<Item = N>,
             J: IntoIterator<Item = G>;
}

Required Associated Types§

Required Methods§

Source

fn from_raw_buffers<I, J>(indices: I, vertices: J) -> Result<Self, Self::Error>
where I: IntoIterator<Item = N>, J: IntoIterator<Item = G>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§