pub struct BfgsResult {
pub x: Vec<f64>,
pub f: f64,
pub iterations: usize,
}Fields§
§x: Vec<f64>§f: f64§iterations: usizeTrait Implementations§
Source§impl Clone for BfgsResult
impl Clone for BfgsResult
Source§fn clone(&self) -> BfgsResult
fn clone(&self) -> BfgsResult
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 BfgsResult
impl RefUnwindSafe for BfgsResult
impl Send for BfgsResult
impl Sync for BfgsResult
impl Unpin for BfgsResult
impl UnsafeUnpin for BfgsResult
impl UnwindSafe for BfgsResult
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