Struct ark_api_ffi::render_v1::MeshDataInfo
source · [−]#[repr(C)]pub struct MeshDataInfo {
pub num_indices: u64,
pub num_vertices: u64,
pub flags: MeshDataInfoFlags,
pub _pad: [u8; 4],
}Fields
num_indices: u64num_vertices: u64flags: MeshDataInfoFlags_pad: [u8; 4]Trait Implementations
sourceimpl Clone for MeshDataInfo
impl Clone for MeshDataInfo
sourcefn clone(&self) -> MeshDataInfo
fn clone(&self) -> MeshDataInfo
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 MeshDataInfo
impl Debug for MeshDataInfo
sourceimpl Default for MeshDataInfo
impl Default for MeshDataInfo
sourcefn default() -> MeshDataInfo
fn default() -> MeshDataInfo
Returns the “default value” for a type. Read more
sourceimpl PartialEq<MeshDataInfo> for MeshDataInfo
impl PartialEq<MeshDataInfo> for MeshDataInfo
sourcefn eq(&self, other: &MeshDataInfo) -> bool
fn eq(&self, other: &MeshDataInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MeshDataInfo) -> bool
fn ne(&self, other: &MeshDataInfo) -> bool
This method tests for !=.
impl Copy for MeshDataInfo
impl Eq for MeshDataInfo
impl Pod for MeshDataInfo
impl StructuralEq for MeshDataInfo
impl StructuralPartialEq for MeshDataInfo
Auto Trait Implementations
impl RefUnwindSafe for MeshDataInfo
impl Send for MeshDataInfo
impl Sync for MeshDataInfo
impl Unpin for MeshDataInfo
impl UnwindSafe for MeshDataInfo
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
sourceimpl<T> CheckedBitPattern for T where
T: AnyBitPattern,
impl<T> CheckedBitPattern for T where
T: AnyBitPattern,
type Bits = T
type Bits = T
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: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret bits as &Self.