pub struct ObjectSummary {Show 20 fields
pub object_id: u64,
pub partition_id: u64,
pub mjd_min: f64,
pub mjd_max: f64,
pub arc_length: f64,
pub num_obs: i64,
pub num_observatories: i64,
pub findable: Option<bool>,
pub found_pure: i64,
pub found_contaminated: i64,
pub pure: i64,
pub pure_complete: i64,
pub contaminated: i64,
pub contaminant: i64,
pub mixed: i64,
pub obs_in_pure: i64,
pub obs_in_pure_complete: i64,
pub obs_in_contaminated: i64,
pub obs_as_contaminant: i64,
pub obs_in_mixed: i64,
}Expand description
Per-object summary of linkage results.
Fields§
§object_id: u64§partition_id: u64§mjd_min: f64§mjd_max: f64§arc_length: f64§num_obs: i64§num_observatories: i64§findable: Option<bool>§found_pure: i64§found_contaminated: i64§pure: i64§pure_complete: i64§contaminated: i64§contaminant: i64§mixed: i64§obs_in_pure: i64§obs_in_pure_complete: i64§obs_in_contaminated: i64§obs_as_contaminant: i64§obs_in_mixed: i64Trait Implementations§
Source§impl Clone for ObjectSummary
impl Clone for ObjectSummary
Source§fn clone(&self) -> ObjectSummary
fn clone(&self) -> ObjectSummary
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 ObjectSummary
impl RefUnwindSafe for ObjectSummary
impl Send for ObjectSummary
impl Sync for ObjectSummary
impl Unpin for ObjectSummary
impl UnsafeUnpin for ObjectSummary
impl UnwindSafe for ObjectSummary
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> 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