Trait plexus::encoding::FromEncoding
source · [−]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>;
}