pub struct ProjectedPoint {
pub timestamp: i64,
pub x: f32,
pub y: f32,
}Expand description
A 2D projected point.
Fields§
§timestamp: i64Original timestamp.
x: f32First principal component coordinate.
y: f32Second principal component coordinate.
Trait Implementations§
Source§impl Clone for ProjectedPoint
impl Clone for ProjectedPoint
Source§fn clone(&self) -> ProjectedPoint
fn clone(&self) -> ProjectedPoint
Returns a copy 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 ProjectedPoint
impl RefUnwindSafe for ProjectedPoint
impl Send for ProjectedPoint
impl Sync for ProjectedPoint
impl Unpin for ProjectedPoint
impl UnwindSafe for ProjectedPoint
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