Struct ark_api::world::MeshRawWithMaterialAndName
source · [−]#[repr(C)]pub struct MeshRawWithMaterialAndName {
pub inner: MeshRawWithName,
pub _pad: u32,
pub material: u64,
}
Fields
inner: MeshRawWithName
_pad: u32
material: u64
Trait Implementations
sourceimpl CheckedBitPattern for MeshRawWithMaterialAndName
impl CheckedBitPattern for MeshRawWithMaterialAndName
type Bits = MeshRawWithMaterialAndNameBits
type Bits = MeshRawWithMaterialAndNameBits
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
. Read more
sourcefn is_valid_bit_pattern(bits: &MeshRawWithMaterialAndNameBits) -> bool
fn is_valid_bit_pattern(bits: &MeshRawWithMaterialAndNameBits) -> bool
If this function returns true, then it must be valid to reinterpret bits
as &Self
. Read more
sourceimpl Clone for MeshRawWithMaterialAndName
impl Clone for MeshRawWithMaterialAndName
sourcefn clone(&self) -> MeshRawWithMaterialAndName
fn clone(&self) -> MeshRawWithMaterialAndName
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MeshRawWithMaterialAndName
impl Debug for MeshRawWithMaterialAndName
impl Copy for MeshRawWithMaterialAndName
impl NoUninit for MeshRawWithMaterialAndName
Auto Trait Implementations
impl RefUnwindSafe for MeshRawWithMaterialAndName
impl Send for MeshRawWithMaterialAndName
impl Sync for MeshRawWithMaterialAndName
impl Unpin for MeshRawWithMaterialAndName
impl UnwindSafe for MeshRawWithMaterialAndName
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more