[][src]Struct scs::ScsWork

#[repr(C)]
pub struct ScsWork {
    pub u: *mut f64,
    pub v: *mut f64,
    pub u_t: *mut f64,
    pub u_prev: *mut f64,
    pub v_prev: *mut f64,
    pub h: *mut f64,
    pub g: *mut f64,
    pub pr: *mut f64,
    pub dr: *mut f64,
    pub g_th: f64,
    pub sc_b: f64,
    pub sc_c: f64,
    pub nm_b: f64,
    pub nm_c: f64,
    pub b: *mut f64,
    pub c: *mut f64,
    pub m: scs_int,
    pub n: scs_int,
    pub A: *mut ScsMatrix,
    pub p: *mut ScsLinSysWork,
    pub stgs: *mut ScsSettings,
    pub scal: *mut ScsScaling,
    pub cone_work: *mut ScsConeWork,
    pub accel: *mut AaWork,
}

Fields

u: *mut f64v: *mut f64u_t: *mut f64u_prev: *mut f64v_prev: *mut f64h: *mut f64g: *mut f64pr: *mut f64dr: *mut f64g_th: f64sc_b: f64sc_c: f64nm_b: f64nm_c: f64b: *mut f64c: *mut f64m: scs_intn: scs_intA: *mut ScsMatrixp: *mut ScsLinSysWorkstgs: *mut ScsSettingsscal: *mut ScsScalingcone_work: *mut ScsConeWorkaccel: *mut AaWork

Trait Implementations

impl Clone for ScsWork[src]

impl Copy for ScsWork[src]

impl Debug for ScsWork[src]

Auto Trait Implementations

impl RefUnwindSafe for ScsWork

impl !Send for ScsWork

impl !Sync for ScsWork

impl Unpin for ScsWork

impl UnwindSafe for ScsWork

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.