Trait dae_parser::ParseGeom [−][src]
pub trait ParseGeom: Default {
const NAME: &'static str;
fn parse(it: &mut Peekable<Children<'_>>) -> Result<Self, Error>;
fn validate(_: &Geom<Self>) -> Result<(), Error>;
}
Expand description
The trait for types that can appear in a Geom<T>
.
Associated Constants
Required methods
Parse the data from an element iterator.