pub struct GateRecord {
pub model: PhotometryModel,
pub passed: bool,
pub reason: String,
}Expand description
One model-ladder gate decision from the photometric fit.
Fields§
§model: PhotometryModelModel the gate evaluated.
passed: boolWhether the model was admitted.
reason: StringHuman-readable gate reason.
Trait Implementations§
Source§impl Clone for GateRecord
impl Clone for GateRecord
Source§fn clone(&self) -> GateRecord
fn clone(&self) -> GateRecord
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 GateRecord
impl Debug for GateRecord
Source§impl PartialEq for GateRecord
impl PartialEq for GateRecord
impl StructuralPartialEq for GateRecord
Auto Trait Implementations§
impl Freeze for GateRecord
impl RefUnwindSafe for GateRecord
impl Send for GateRecord
impl Sync for GateRecord
impl Unpin for GateRecord
impl UnsafeUnpin for GateRecord
impl UnwindSafe for GateRecord
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