Enum dae_parser::ArrayElement [−][src]
pub enum ArrayElement {
IdRef(IdRefArray),
Name(NameArray),
Bool(BoolArray),
Float(FloatArray),
Int(IntArray),
}
Expand description
A data array element.
Variants
IdRef(IdRefArray)
Tuple Fields
0: IdRefArray
Stores a homogenous array of ID reference values.
Name(NameArray)
Tuple Fields
0: NameArray
Stores a homogenous array of symbolic name values.
Bool(BoolArray)
Tuple Fields
0: BoolArray
Stores a homogenous array of Boolean values.
Float(FloatArray)
Tuple Fields
0: FloatArray
Stores a homogenous array of floating-point values.
Int(IntArray)
Tuple Fields
0: IntArray
Stores a homogenous array of integer values.
Implementations
Parse an ArrayElement
from an XML element.
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for ArrayElement
impl Send for ArrayElement
impl Sync for ArrayElement
impl Unpin for ArrayElement
impl UnwindSafe for ArrayElement
Blanket Implementations
Mutably borrows from an owned value. Read more