#[repr(C)]
pub struct _SUNNonlinearSolverContent_FixedPoint {
Show 23 fields pub Sys: SUNNonlinSolSysFn, pub CTest: SUNNonlinSolConvTestFn, pub m: c_int, pub imap: *mut c_int, pub damping: c_int, pub beta: sunrealtype, pub R: *mut sunrealtype, pub gamma: *mut sunrealtype, pub cvals: *mut sunrealtype, pub df: *mut N_Vector, pub dg: *mut N_Vector, pub q: *mut N_Vector, pub Xvecs: *mut N_Vector, pub yprev: N_Vector, pub gy: N_Vector, pub fold: N_Vector, pub gold: N_Vector, pub delta: N_Vector, pub curiter: c_int, pub maxiters: c_int, pub niters: c_long, pub nconvfails: c_long, pub ctest_data: *mut c_void,
}

Fields§

§Sys: SUNNonlinSolSysFn§CTest: SUNNonlinSolConvTestFn§m: c_int§imap: *mut c_int§damping: c_int§beta: sunrealtype§R: *mut sunrealtype§gamma: *mut sunrealtype§cvals: *mut sunrealtype§df: *mut N_Vector§dg: *mut N_Vector§q: *mut N_Vector§Xvecs: *mut N_Vector§yprev: N_Vector§gy: N_Vector§fold: N_Vector§gold: N_Vector§delta: N_Vector§curiter: c_int§maxiters: c_int§niters: c_long§nconvfails: c_long§ctest_data: *mut c_void

Trait Implementations§

source§

impl Clone for _SUNNonlinearSolverContent_FixedPoint

source§

fn clone(&self) -> _SUNNonlinearSolverContent_FixedPoint

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for _SUNNonlinearSolverContent_FixedPoint

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for _SUNNonlinearSolverContent_FixedPoint

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.