[][src]Struct argmin::prelude::ArgminResult

pub struct ArgminResult<O> where
    O: ArgminOp
{ pub operator: O, pub state: IterState<O>, }

This is returned by the Executor after the solver is run on the operator.

TODO: Think about removing this, as returning the IterState may be much better

Fields

operator: O

operator

state: IterState<O>

iteration state

Methods

impl<O> ArgminResult<O> where
    O: ArgminOp
[src]

pub fn new(operator: O, state: IterState<O>) -> ArgminResult<O>[src]

Constructor

Trait Implementations

impl<O> Ord for ArgminResult<O> where
    O: ArgminOp
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<O> Clone for ArgminResult<O> where
    O: ArgminOp + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<O> Eq for ArgminResult<O> where
    O: ArgminOp
[src]

impl<O> Display for ArgminResult<O> where
    O: ArgminOp,
    <O as ArgminOp>::Param: Debug
[src]

impl<O> Serialize for ArgminResult<O> where
    O: ArgminOp + Serialize
[src]

impl<O> PartialOrd<ArgminResult<O>> for ArgminResult<O> where
    O: ArgminOp
[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'de, O> Deserialize<'de> for ArgminResult<O> where
    O: ArgminOp + Deserialize<'de>, 
[src]

impl<O> PartialEq<ArgminResult<O>> for ArgminResult<O> where
    O: ArgminOp
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl<O> Send for ArgminResult<O> where
    <O as ArgminOp>::Hessian: Send,
    <O as ArgminOp>::Param: Send

impl<O> Sync for ArgminResult<O> where
    <O as ArgminOp>::Hessian: Sync,
    <O as ArgminOp>::Param: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized