Trait dae_parser::ArrayKind
source · [−]pub trait ArrayKind: HasId + XNode + Deref<Target = [Self::Elem]> + 'static {
type Elem: Clone + Display + Debug + 'static;
fn from_array_element(elem: &ArrayElement) -> Option<&Self>;
}
Expand description
A trait for the common functionality of the array types.
Required Associated Types
Required Methods
sourcefn from_array_element(elem: &ArrayElement) -> Option<&Self>
fn from_array_element(elem: &ArrayElement) -> Option<&Self>
Extract a typed array from an ArrayElement
.