pub struct FindableObservation {
pub partition_id: u64,
pub object_id: u64,
pub discovery_night: Option<i64>,
pub obs_ids: Option<Vec<u64>>,
}Expand description
Observations that satisfy the findability criteria for a given partition.
Fields§
§partition_id: u64§object_id: u64§discovery_night: Option<i64>§obs_ids: Option<Vec<u64>>Trait Implementations§
Source§impl Clone for FindableObservation
impl Clone for FindableObservation
Source§fn clone(&self) -> FindableObservation
fn clone(&self) -> FindableObservation
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 FindableObservation
impl RefUnwindSafe for FindableObservation
impl Send for FindableObservation
impl Sync for FindableObservation
impl Unpin for FindableObservation
impl UnsafeUnpin for FindableObservation
impl UnwindSafe for FindableObservation
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