logo
pub trait FromEncoding<E>: Sized where
    E: FaceDecoder + VertexDecoder
{ type Error: Debug; fn from_encoding(
        vertices: <E as VertexDecoder>::Output,
        faces: <E as FaceDecoder>::Output
    ) -> Result<Self, Self::Error>; }

Required Associated Types

Required Methods

Implementors