[]Struct argmin::prelude::modcholesky::Decomposition

pub struct Decomposition<L, E, P> {
    pub l: L,
    pub e: E,
    pub p: P,
}

Fields

l: Le: Ep: P

Methods

impl<L, E, P> Decomposition<L, E, P>

pub fn new(l: L, e: E, p: P) -> Decomposition<L, E, P>

Auto Trait Implementations

impl<L, E, P> Send for Decomposition<L, E, P> where
    E: Send,
    L: Send,
    P: Send

impl<L, E, P> Unpin for Decomposition<L, E, P> where
    E: Unpin,
    L: Unpin,
    P: Unpin

impl<L, E, P> Sync for Decomposition<L, E, P> where
    E: Sync,
    L: Sync,
    P: Sync

impl<L, E, P> UnwindSafe for Decomposition<L, E, P> where
    E: UnwindSafe,
    L: UnwindSafe,
    P: UnwindSafe

impl<L, E, P> RefUnwindSafe for Decomposition<L, E, P> where
    E: RefUnwindSafe,
    L: RefUnwindSafe,
    P: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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