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: IdRefArrayStores a homogenous array of ID reference values.
Name(NameArray)
Tuple Fields
0: NameArrayStores a homogenous array of symbolic name values.
Bool(BoolArray)
Tuple Fields
0: BoolArrayStores a homogenous array of Boolean values.
Float(FloatArray)
Tuple Fields
0: FloatArrayStores a homogenous array of floating-point values.
Int(IntArray)
Tuple Fields
0: IntArrayStores a homogenous array of integer values.
Implementations
Parse an ArrayElement from an XML element.
Trait Implementations
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