[][src]Struct scs::ScsSettings

#[repr(C)]
pub struct ScsSettings {
    pub normalize: scs_int,
    pub scale: f64,
    pub rho_x: f64,
    pub max_iters: scs_int,
    pub eps: f64,
    pub alpha: f64,
    pub cg_rate: f64,
    pub verbose: scs_int,
    pub warm_start: scs_int,
    pub acceleration_lookback: scs_int,
    pub write_data_filename: *const c_char,
}

Fields

normalize: scs_intscale: f64rho_x: f64max_iters: scs_inteps: f64alpha: f64cg_rate: f64verbose: scs_intwarm_start: scs_intacceleration_lookback: scs_intwrite_data_filename: *const c_char

Trait Implementations

impl Clone for ScsSettings[src]

impl Copy for ScsSettings[src]

impl Debug for ScsSettings[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.