Enum dae_parser::ArrayElement [−][src]
pub enum ArrayElement {
IdRef(Box<[String]>),
Name(Box<[String]>),
Bool(Box<[bool]>),
Float(Box<[f32]>),
Int(Box<[u32]>),
}
Expand description
A data array element.
Variants
Stores a homogenous array of ID reference values.
Stores a homogenous array of symbolic name values.
Stores a homogenous array of Boolean values.
Stores a homogenous array of floating-point values.
Stores a homogenous array of integer values.
Implementations
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