pub struct ObserverPoint {
pub x: u64,
pub y: u64,
pub height: f64,
}Expand description
An observer point with location and height
Fields§
§x: u64X coordinate (column)
y: u64Y coordinate (row)
height: f64Height above ground
Trait Implementations§
Source§impl Clone for ObserverPoint
impl Clone for ObserverPoint
Source§fn clone(&self) -> ObserverPoint
fn clone(&self) -> ObserverPoint
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 ObserverPoint
impl Debug for ObserverPoint
impl Copy for ObserverPoint
Auto Trait Implementations§
impl Freeze for ObserverPoint
impl RefUnwindSafe for ObserverPoint
impl Send for ObserverPoint
impl Sync for ObserverPoint
impl Unpin for ObserverPoint
impl UnsafeUnpin for ObserverPoint
impl UnwindSafe for ObserverPoint
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