pub struct Vertice {
pub position: [f32; 3],
pub normal: [f32; 3],
pub color: [f32; 4],
pub tex_coords: [f32; 2],
}Fields§
§position: [f32; 3]§normal: [f32; 3]§color: [f32; 4]§tex_coords: [f32; 2]Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vertice
impl RefUnwindSafe for Vertice
impl Send for Vertice
impl Sync for Vertice
impl Unpin for Vertice
impl UnwindSafe for Vertice
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