pub struct PsorResult {
pub x: Vec<f64>,
pub iterations: usize,
pub converged: bool,
}Expand description
Result of a PSOR solve.
Fields§
§x: Vec<f64>§iterations: usize§converged: boolTrait Implementations§
Source§impl Clone for PsorResult
impl Clone for PsorResult
Source§fn clone(&self) -> PsorResult
fn clone(&self) -> PsorResult
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 moreAuto Trait Implementations§
impl Freeze for PsorResult
impl RefUnwindSafe for PsorResult
impl Send for PsorResult
impl Sync for PsorResult
impl Unpin for PsorResult
impl UnsafeUnpin for PsorResult
impl UnwindSafe for PsorResult
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