Mesh_Runtime

Struct Mesh_Runtime 

Source
#[repr(C, packed(4))]
pub struct Mesh_Runtime {
Show 24 fields pub mesh_eval: Pointer<Mesh>, pub eval_mutex: Pointer<Void>, pub normals_mutex: Pointer<Void>, pub render_mutex: Pointer<Void>, pub edit_data: Pointer<Nothing>, pub batch_cache: Pointer<Void>, pub looptris: MLoopTri_Store, pub bvh_cache: Pointer<Nothing>, pub shrinkwrap_data: Pointer<Nothing>, pub cd_mask_extra: CustomData_MeshMasks, pub subdiv_ccg: Pointer<Nothing>, pub subdiv_ccg_tot_level: i32, pub deformed_only: i8, pub is_original: i8, pub wrapper_type: i8, pub wrapper_type_finalize: i8, pub subsurf_runtime_data: Pointer<Nothing>, pub _pad1: Pointer<Void>, pub _pad2: [i8; 6], pub vert_normals_dirty: i8, pub poly_normals_dirty: i8, pub vert_normals: Function, pub poly_normals: Function, pub subsurf_face_dot_tags: Pointer<i32>,
}

Fields§

§mesh_eval: Pointer<Mesh>§eval_mutex: Pointer<Void>§normals_mutex: Pointer<Void>§render_mutex: Pointer<Void>§edit_data: Pointer<Nothing>§batch_cache: Pointer<Void>§looptris: MLoopTri_Store§bvh_cache: Pointer<Nothing>§shrinkwrap_data: Pointer<Nothing>§cd_mask_extra: CustomData_MeshMasks§subdiv_ccg: Pointer<Nothing>§subdiv_ccg_tot_level: i32§deformed_only: i8§is_original: i8§wrapper_type: i8§wrapper_type_finalize: i8§subsurf_runtime_data: Pointer<Nothing>§_pad1: Pointer<Void>§_pad2: [i8; 6]§vert_normals_dirty: i8§poly_normals_dirty: i8§vert_normals: Function§poly_normals: Function§subsurf_face_dot_tags: Pointer<i32>

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.