pub struct FbxImportResult {
pub vertices: Vec<FbxVertex>,
pub indices: Vec<u32>,
pub bones: Vec<FbxBone>,
pub animations: Vec<FbxAnimation>,
pub skin_data: Option<FbxSkinData>,
pub materials: Vec<FbxMaterialData>,
pub warnings: Vec<String>,
}Expand description
Result of parsing an FBX file.
Fields§
§vertices: Vec<FbxVertex>§indices: Vec<u32>§bones: Vec<FbxBone>§animations: Vec<FbxAnimation>§skin_data: Option<FbxSkinData>§materials: Vec<FbxMaterialData>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for FbxImportResult
impl Clone for FbxImportResult
Source§fn clone(&self) -> FbxImportResult
fn clone(&self) -> FbxImportResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FbxImportResult
impl Debug for FbxImportResult
Source§impl Default for FbxImportResult
impl Default for FbxImportResult
Source§fn default() -> FbxImportResult
fn default() -> FbxImportResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FbxImportResult
impl RefUnwindSafe for FbxImportResult
impl Send for FbxImportResult
impl Sync for FbxImportResult
impl Unpin for FbxImportResult
impl UnsafeUnpin for FbxImportResult
impl UnwindSafe for FbxImportResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more