[][src]Struct sundials_sys::_SUNLinearSolverContent_SPGMR

#[repr(C)]
pub struct _SUNLinearSolverContent_SPGMR { pub maxl: c_int, pub pretype: c_int, pub gstype: c_int, pub max_restarts: c_int, pub numiters: c_int, pub resnorm: realtype, pub last_flag: c_long, pub ATimes: ATimesFn, pub ATData: *mut c_void, pub Psetup: PSetupFn, pub Psolve: PSolveFn, pub PData: *mut c_void, pub s1: N_Vector, pub s2: N_Vector, pub V: *mut N_Vector, pub Hes: *mut *mut realtype, pub givens: *mut realtype, pub xcor: N_Vector, pub yg: *mut realtype, pub vtemp: N_Vector, pub cv: *mut realtype, pub Xv: *mut N_Vector, }

Fields

maxl: c_intpretype: c_intgstype: c_intmax_restarts: c_intnumiters: c_intresnorm: realtypelast_flag: c_longATimes: ATimesFnATData: *mut c_voidPsetup: PSetupFnPsolve: PSolveFnPData: *mut c_voids1: N_Vectors2: N_VectorV: *mut N_VectorHes: *mut *mut realtypegivens: *mut realtypexcor: N_Vectoryg: *mut realtypevtemp: N_Vectorcv: *mut realtypeXv: *mut N_Vector

Trait Implementations

impl Copy for _SUNLinearSolverContent_SPGMR
[src]

impl Clone for _SUNLinearSolverContent_SPGMR
[src]

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

Performs copy-assignment from source. Read more

impl Debug for _SUNLinearSolverContent_SPGMR
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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