[][src]Struct sundials_sys::_generic_SUNLinearSolver_Ops

#[repr(C)]
pub struct _generic_SUNLinearSolver_Ops { pub gettype: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> SUNLinearSolver_Type>, pub setatimes: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_void, arg3: ATimesFn) -> c_int>, pub setpreconditioner: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_void, arg3: PSetupFn, arg4: PSolveFn) -> c_int>, pub setscalingvectors: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: N_Vector, arg3: N_Vector) -> c_int>, pub initialize: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>, pub setup: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: SUNMatrix) -> c_int>, pub solve: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: SUNMatrix, arg3: N_Vector, arg4: N_Vector, arg5: realtype) -> c_int>, pub numiters: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>, pub resnorm: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> realtype>, pub lastflag: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_long>, pub space: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_long, arg3: *mut c_long) -> c_int>, pub resid: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> N_Vector>, pub free: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>, }

Fields

gettype: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> SUNLinearSolver_Type>setatimes: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_void, arg3: ATimesFn) -> c_int>setpreconditioner: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_void, arg3: PSetupFn, arg4: PSolveFn) -> c_int>setscalingvectors: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: N_Vector, arg3: N_Vector) -> c_int>initialize: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>setup: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: SUNMatrix) -> c_int>solve: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: SUNMatrix, arg3: N_Vector, arg4: N_Vector, arg5: realtype) -> c_int>numiters: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>resnorm: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> realtype>lastflag: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_long>space: Option<unsafe extern "C" fn(arg1: SUNLinearSolver, arg2: *mut c_long, arg3: *mut c_long) -> c_int>resid: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> N_Vector>free: Option<unsafe extern "C" fn(arg1: SUNLinearSolver) -> c_int>

Trait Implementations

impl Copy for _generic_SUNLinearSolver_Ops
[src]

impl Clone for _generic_SUNLinearSolver_Ops
[src]

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

Performs copy-assignment from source. Read more

impl Debug for _generic_SUNLinearSolver_Ops
[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]