pub struct PointInstanceSet {
pub points: Vec<PointInstance>,
pub generation: u64,
}Expand description
A collection of PointInstances with a generation counter.
Fields§
§points: Vec<PointInstance>The point instances.
generation: u64Structural generation counter. Bump when the number or identity of points changes.
Implementations§
Trait Implementations§
Source§impl Clone for PointInstanceSet
impl Clone for PointInstanceSet
Source§fn clone(&self) -> PointInstanceSet
fn clone(&self) -> PointInstanceSet
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 moreSource§impl Debug for PointInstanceSet
impl Debug for PointInstanceSet
Auto Trait Implementations§
impl Freeze for PointInstanceSet
impl RefUnwindSafe for PointInstanceSet
impl Send for PointInstanceSet
impl Sync for PointInstanceSet
impl Unpin for PointInstanceSet
impl UnsafeUnpin for PointInstanceSet
impl UnwindSafe for PointInstanceSet
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