[][src]Struct argmin::prelude::NoOperator

pub struct NoOperator<T, U, H> { /* fields omitted */ }

Fake Operators for testing No-op operator with free choice of the types

Methods

impl<T, U, H> NoOperator<T, U, H>[src]

pub fn new() -> NoOperator<T, U, H>[src]

Constructor

Trait Implementations

impl<T, U, H> Ord for NoOperator<T, U, H> where
    H: Ord,
    T: Ord,
    U: Ord
[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<T, U, H> Clone for NoOperator<T, U, H> where
    H: Clone,
    T: Clone,
    U: Clone
[src]

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

Performs copy-assignment from source. Read more

impl<T, U, H> ArgminOp for NoOperator<T, U, H> where
    H: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    T: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned,
    U: Clone + Default + Debug + Send + Sync + Serialize + DeserializeOwned
[src]

type Param = T

Type of the parameter vector

type Output = U

Output of the operator

type Hessian = H

Type of Hessian

fn apply(
    &self,
    _p: &<NoOperator<T, U, H> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H> as ArgminOp>::Output, Error>
[src]

Do nothing, really.

fn gradient(
    &self,
    _p: &<NoOperator<T, U, H> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H> as ArgminOp>::Param, Error>
[src]

Do nothing, really.

fn hessian(
    &self,
    _p: &<NoOperator<T, U, H> as ArgminOp>::Param
) -> Result<<NoOperator<T, U, H> as ArgminOp>::Hessian, Error>
[src]

Do nothing, really.

fn modify(
    &self,
    _p: &<NoOperator<T, U, H> as ArgminOp>::Param,
    _t: f64
) -> Result<<NoOperator<T, U, H> as ArgminOp>::Param, Error>
[src]

Do nothing, really.

impl<T, U, H> Eq for NoOperator<T, U, H> where
    H: Eq,
    T: Eq,
    U: Eq
[src]

impl<T, U, H> Display for NoOperator<T, U, H>[src]

impl<T, U, H> Default for NoOperator<T, U, H> where
    H: Default,
    T: Default,
    U: Default
[src]

impl<T, U, H> Hash for NoOperator<T, U, H> where
    H: Hash,
    T: Hash,
    U: Hash
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T, U, H> Serialize for NoOperator<T, U, H>[src]

impl<T, U, H> Copy for NoOperator<T, U, H> where
    H: Copy,
    T: Copy,
    U: Copy
[src]

impl<T, U, H> PartialOrd<NoOperator<T, U, H>> for NoOperator<T, U, H> where
    H: PartialOrd<H>,
    T: PartialOrd<T>,
    U: PartialOrd<U>, 
[src]

impl<'de, T, U, H> Deserialize<'de> for NoOperator<T, U, H>[src]

impl<T, U, H> PartialEq<NoOperator<T, U, H>> for NoOperator<T, U, H> where
    H: PartialEq<H>,
    T: PartialEq<T>,
    U: PartialEq<U>, 
[src]

impl<T, U, H> Debug for NoOperator<T, U, H> where
    H: Debug,
    T: Debug,
    U: Debug
[src]

Auto Trait Implementations

impl<T, U, H> Send for NoOperator<T, U, H> where
    H: Send,
    T: Send,
    U: Send

impl<T, U, H> Sync for NoOperator<T, U, H> where
    H: Sync,
    T: Sync,
    U: 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