pub struct AllObjects {Show 20 fields
pub object_id: Vec<u64>,
pub partition_id: Vec<u64>,
pub mjd_min: Vec<f64>,
pub mjd_max: Vec<f64>,
pub arc_length: Vec<f64>,
pub num_obs: Vec<i64>,
pub num_observatories: Vec<i64>,
pub findable: Vec<Option<bool>>,
pub found_pure: Vec<i64>,
pub found_contaminated: Vec<i64>,
pub pure: Vec<i64>,
pub pure_complete: Vec<i64>,
pub contaminated: Vec<i64>,
pub contaminant: Vec<i64>,
pub mixed: Vec<i64>,
pub obs_in_pure: Vec<i64>,
pub obs_in_pure_complete: Vec<i64>,
pub obs_in_contaminated: Vec<i64>,
pub obs_as_contaminant: Vec<i64>,
pub obs_in_mixed: Vec<i64>,
}Expand description
Columnar storage for all object summaries.
Fields§
§object_id: Vec<u64>§partition_id: Vec<u64>§mjd_min: Vec<f64>§mjd_max: Vec<f64>§arc_length: Vec<f64>§num_obs: Vec<i64>§num_observatories: Vec<i64>§findable: Vec<Option<bool>>§found_pure: Vec<i64>§found_contaminated: Vec<i64>§pure: Vec<i64>§pure_complete: Vec<i64>§contaminated: Vec<i64>§contaminant: Vec<i64>§mixed: Vec<i64>§obs_in_pure: Vec<i64>§obs_in_pure_complete: Vec<i64>§obs_in_contaminated: Vec<i64>§obs_as_contaminant: Vec<i64>§obs_in_mixed: Vec<i64>Implementations§
Trait Implementations§
Source§impl Clone for AllObjects
impl Clone for AllObjects
Source§fn clone(&self) -> AllObjects
fn clone(&self) -> AllObjects
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 AllObjects
impl Debug for AllObjects
Source§impl Default for AllObjects
impl Default for AllObjects
Source§fn default() -> AllObjects
fn default() -> AllObjects
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AllObjects
impl RefUnwindSafe for AllObjects
impl Send for AllObjects
impl Sync for AllObjects
impl Unpin for AllObjects
impl UnsafeUnpin for AllObjects
impl UnwindSafe for AllObjects
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