Struct spitfire_core::SimpleVertex
source · #[repr(C)]pub struct SimpleVertex {
pub position: [f32; 3],
pub normal: [f32; 3],
pub uv: [f32; 2],
}Fields§
§position: [f32; 3]§normal: [f32; 3]§uv: [f32; 2]Trait Implementations§
source§impl Clone for SimpleVertex
impl Clone for SimpleVertex
source§fn clone(&self) -> SimpleVertex
fn clone(&self) -> SimpleVertex
Returns a copy 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 moresource§impl Debug for SimpleVertex
impl Debug for SimpleVertex
impl Copy for SimpleVertex
impl Pod for SimpleVertex
Auto Trait Implementations§
impl RefUnwindSafe for SimpleVertex
impl Send for SimpleVertex
impl Sync for SimpleVertex
impl Unpin for SimpleVertex
impl UnwindSafe for SimpleVertex
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
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.source§fn 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.