pub struct FbxValidation {
pub vertex_count: usize,
pub index_count: usize,
pub bone_count: usize,
pub animation_count: usize,
pub meshlet_compatible: bool,
pub dreamlet_compatible: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Validation result for FBX import compatibility.
Fields§
§vertex_count: usize§index_count: usize§bone_count: usize§animation_count: usize§meshlet_compatible: bool§dreamlet_compatible: bool§errors: Vec<String>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for FbxValidation
impl Clone for FbxValidation
Source§fn clone(&self) -> FbxValidation
fn clone(&self) -> FbxValidation
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 moreAuto Trait Implementations§
impl Freeze for FbxValidation
impl RefUnwindSafe for FbxValidation
impl Send for FbxValidation
impl Sync for FbxValidation
impl Unpin for FbxValidation
impl UnsafeUnpin for FbxValidation
impl UnwindSafe for FbxValidation
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