Trait dae_parser::ParseLibrary [−][src]
pub trait ParseLibrary: XNode {
const LIBRARY: &'static str;
fn extract_element(e: &LibraryElement) -> Option<&Library<Self>>;
}
Expand description
A trait for nodes that can be placed in a library element.
Associated Constants
Required methods
fn extract_element(e: &LibraryElement) -> Option<&Library<Self>>
fn extract_element(e: &LibraryElement) -> Option<&Library<Self>>
Extract the library from a single LibraryElement
.