pub struct ExportedPoint {
pub id: String,
pub category: String,
pub r: f64,
pub theta: f64,
pub phi: f64,
pub x: f64,
pub y: f64,
pub z: f64,
pub certainty: f64,
pub intensity: f64,
}Expand description
Projected data for a single item, suitable for export or visualization.
Fields§
§id: String§category: String§r: f64§theta: f64§phi: f64§x: f64§y: f64§z: f64§certainty: f64§intensity: f64Trait Implementations§
Source§impl Clone for ExportedPoint
impl Clone for ExportedPoint
Source§fn clone(&self) -> ExportedPoint
fn clone(&self) -> ExportedPoint
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 ExportedPoint
impl Debug for ExportedPoint
Auto Trait Implementations§
impl Freeze for ExportedPoint
impl RefUnwindSafe for ExportedPoint
impl Send for ExportedPoint
impl Sync for ExportedPoint
impl Unpin for ExportedPoint
impl UnsafeUnpin for ExportedPoint
impl UnwindSafe for ExportedPoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more