Struct dae_parser::Param [−][src]
pub struct Param {
pub sid: Option<String>,
pub name: Option<String>,
pub ty: String,
pub semantic: Option<Semantic>,
}
Expand description
Declares parametric information for its parent element.
Fields
sid: Option<String>
A text string value containing the subidentifier of this element. This value must be unique within the scope of the parent element.
name: Option<String>
The text string name of this element.
ty: String
The type of the value data. This text string must be understood by the application.
semantic: Option<Semantic>
The user-defined meaning of the parameter.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Param
impl UnwindSafe for Param
Blanket Implementations
Mutably borrows from an owned value. Read more