pub struct ConformalUpdate {
pub residual: f64,
pub bucket: BucketKey,
pub sample_count: usize,
}Expand description
Update metadata after observing a frame.
Fields§
§residual: f64Residual (y_t - f(x_t)).
bucket: BucketKeyBucket updated.
sample_count: usizeNew sample count in the bucket.
Trait Implementations§
Source§impl Clone for ConformalUpdate
impl Clone for ConformalUpdate
Source§fn clone(&self) -> ConformalUpdate
fn clone(&self) -> ConformalUpdate
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 ConformalUpdate
impl RefUnwindSafe for ConformalUpdate
impl Send for ConformalUpdate
impl Sync for ConformalUpdate
impl Unpin for ConformalUpdate
impl UnwindSafe for ConformalUpdate
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