pub struct ResidualHistoryEntry<T> {
pub total_iterations: T,
pub residual_norm: T,
}Fields§
§total_iterations: T§residual_norm: TTrait Implementations§
Source§impl<T: Clone> Clone for ResidualHistoryEntry<T>
impl<T: Clone> Clone for ResidualHistoryEntry<T>
Source§fn clone(&self) -> ResidualHistoryEntry<T>
fn clone(&self) -> ResidualHistoryEntry<T>
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<T: Debug> Debug for ResidualHistoryEntry<T>
impl<T: Debug> Debug for ResidualHistoryEntry<T>
Source§impl<T: PartialEq> PartialEq for ResidualHistoryEntry<T>
impl<T: PartialEq> PartialEq for ResidualHistoryEntry<T>
Source§fn eq(&self, other: &ResidualHistoryEntry<T>) -> bool
fn eq(&self, other: &ResidualHistoryEntry<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T: Copy> Copy for ResidualHistoryEntry<T>
impl<T> StructuralPartialEq for ResidualHistoryEntry<T>
Auto Trait Implementations§
impl<T> Freeze for ResidualHistoryEntry<T>where
T: Freeze,
impl<T> RefUnwindSafe for ResidualHistoryEntry<T>where
T: RefUnwindSafe,
impl<T> Send for ResidualHistoryEntry<T>where
T: Send,
impl<T> Sync for ResidualHistoryEntry<T>where
T: Sync,
impl<T> Unpin for ResidualHistoryEntry<T>where
T: Unpin,
impl<T> UnsafeUnpin for ResidualHistoryEntry<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ResidualHistoryEntry<T>where
T: UnwindSafe,
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