pub struct Stall {
pub start_iter: i32,
pub end_iter: i32,
pub metric: &'static str,
pub delta_log10: f64,
}Expand description
One stalled-progress window: consecutive iterations whose log10-residual moved by less than the configured threshold.
Fields§
§start_iter: i32§end_iter: i32§metric: &'static str§delta_log10: f64Trait Implementations§
Source§impl Deserialize<'static> for Stall
impl Deserialize<'static> for Stall
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Stall
Auto Trait Implementations§
impl Freeze for Stall
impl RefUnwindSafe for Stall
impl Send for Stall
impl Sync for Stall
impl Unpin for Stall
impl UnsafeUnpin for Stall
impl UnwindSafe for Stall
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