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)
Stores a homogenous array of ID reference values.
Tuple Fields of IdRef
0: IdRefArray
Name(NameArray)
Stores a homogenous array of symbolic name values.
Tuple Fields of Name
0: NameArray
Bool(BoolArray)
Stores a homogenous array of Boolean values.
Tuple Fields of Bool
0: BoolArray
Float(FloatArray)
Stores a homogenous array of floating-point values.
Tuple Fields of Float
0: FloatArray
Int(IntArray)
Stores a homogenous array of integer values.
Tuple Fields of Int
0: IntArray
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