pub struct HeightPrediction {
pub predicted: u16,
pub lower: u16,
pub upper: u16,
pub observations: u64,
}Expand description
A prediction with conformal bounds.
Fields§
§predicted: u16Point prediction (posterior mean, rounded).
lower: u16Lower conformal bound.
upper: u16Upper conformal bound.
observations: u64Number of observations for this category.
Trait Implementations§
Source§impl Clone for HeightPrediction
impl Clone for HeightPrediction
Source§fn clone(&self) -> HeightPrediction
fn clone(&self) -> HeightPrediction
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 HeightPrediction
impl Debug for HeightPrediction
impl Copy for HeightPrediction
Auto Trait Implementations§
impl Freeze for HeightPrediction
impl RefUnwindSafe for HeightPrediction
impl Send for HeightPrediction
impl Sync for HeightPrediction
impl Unpin for HeightPrediction
impl UnwindSafe for HeightPrediction
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