logo
pub trait FacePropertyDecoder: FaceDecoder {
    fn decode_face_properties<'a, I>(
        &self,
        definition: &'a ElementDefinition,
        elements: I
    ) -> Result<Self::Output, PlyError>
    where
        I: IntoIterator<Item = &'a Element>
; }

Required Methods

Implementors