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

The stored element type.

Required Methods

Extract a typed array from an ArrayElement.

Implementors