pub struct ReconstructionHistory {
pub iterations: Vec<IterationRecord>,
}Fields§
§iterations: Vec<IterationRecord>Implementations§
Source§impl ReconstructionHistory
impl ReconstructionHistory
pub fn final_loss(&self) -> Option<f64>
Trait Implementations§
Source§impl Clone for ReconstructionHistory
impl Clone for ReconstructionHistory
Source§fn clone(&self) -> ReconstructionHistory
fn clone(&self) -> ReconstructionHistory
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 ReconstructionHistory
impl Debug for ReconstructionHistory
Source§impl Default for ReconstructionHistory
impl Default for ReconstructionHistory
Source§fn default() -> ReconstructionHistory
fn default() -> ReconstructionHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReconstructionHistory
impl<'de> Deserialize<'de> for ReconstructionHistory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReconstructionHistory
impl RefUnwindSafe for ReconstructionHistory
impl Send for ReconstructionHistory
impl Sync for ReconstructionHistory
impl Unpin for ReconstructionHistory
impl UnsafeUnpin for ReconstructionHistory
impl UnwindSafe for ReconstructionHistory
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