Trait dae_parser::Traversable [−][src]
pub trait Traversable {
fn traverse<'a, E>(
doc: &'a Document,
f: impl FnMut(&'a Self) -> Result<(), E>
) -> Result<(), E>
where
Self: 'a;
}Expand description
A trait for types that can be enumerated in a Document. This is used to power the
for_each and try_for_each functions.