pub struct PlacedPoint {
pub id: Id,
pub point: Point,
pub blob: Blob,
}Expand description
A point that has been placed in the space
Fields§
§id: IdUnique identifier
point: PointPosition in dimensional space
blob: BlobAttached payload
Implementations§
Trait Implementations§
Source§impl Clone for PlacedPoint
impl Clone for PlacedPoint
Source§fn clone(&self) -> PlacedPoint
fn clone(&self) -> PlacedPoint
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 PlacedPoint
impl RefUnwindSafe for PlacedPoint
impl Send for PlacedPoint
impl Sync for PlacedPoint
impl Unpin for PlacedPoint
impl UnwindSafe for PlacedPoint
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