pub struct SpatialPoint {
pub x: f64,
pub y: f64,
pub z: f64,
pub intensity: f64,
}Expand description
A point in a sonar spatial map.
Fields§
§x: f64§y: f64§z: f64§intensity: f64Trait Implementations§
Source§impl Clone for SpatialPoint
impl Clone for SpatialPoint
Source§fn clone(&self) -> SpatialPoint
fn clone(&self) -> SpatialPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SpatialPoint
impl Debug for SpatialPoint
impl Copy for SpatialPoint
Auto Trait Implementations§
impl Freeze for SpatialPoint
impl RefUnwindSafe for SpatialPoint
impl Send for SpatialPoint
impl Sync for SpatialPoint
impl Unpin for SpatialPoint
impl UnsafeUnpin for SpatialPoint
impl UnwindSafe for SpatialPoint
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