pub struct FastMeshData {
pub positions: Vec<f32>,
pub indices: Vec<u32>,
}Expand description
Mesh data for fast path processing (avoiding full Mesh struct dependency)
Fields§
§positions: Vec<f32>§indices: Vec<u32>Trait Implementations§
Source§impl Clone for FastMeshData
impl Clone for FastMeshData
Source§fn clone(&self) -> FastMeshData
fn clone(&self) -> FastMeshData
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FastMeshData
impl RefUnwindSafe for FastMeshData
impl Send for FastMeshData
impl Sync for FastMeshData
impl Unpin for FastMeshData
impl UnwindSafe for FastMeshData
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