pub struct MeshInfo {
pub name: String,
pub vertex_count: u32,
pub sub_mesh_count: u32,
pub triangle_count: u32,
pub has_blend_shapes: bool,
pub is_readable: bool,
pub is_compressed: bool,
pub has_streaming_data: bool,
}Expand description
Mesh information summary
Fields§
§name: String§vertex_count: u32§sub_mesh_count: u32§triangle_count: u32§has_blend_shapes: bool§is_readable: bool§is_compressed: bool§has_streaming_data: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for MeshInfo
impl<'de> Deserialize<'de> for MeshInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MeshInfo
impl RefUnwindSafe for MeshInfo
impl Send for MeshInfo
impl Sync for MeshInfo
impl Unpin for MeshInfo
impl UnwindSafe for MeshInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more