[][src]Struct descent::expr::dynam::WorkSpace

pub struct WorkSpace {
    pub cols: Vec<Column>,
    pub ns: Vec<f64>,
    pub nds: Vec<f64>,
    pub na1s: Vec<f64>,
    pub na2s: Vec<f64>,
    pub ids: HashMap<ID, f64>,
}

Workspace used for performing expression AD.

Used to save on allocations with many repeated calls.

Fields

cols: Vec<Column>ns: Vec<f64>nds: Vec<f64>na1s: Vec<f64>na2s: Vec<f64>ids: HashMap<ID, f64>

Trait Implementations

impl Clone for WorkSpace[src]

impl Debug for WorkSpace[src]

impl Default for WorkSpace[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> 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, 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.