Struct sundials_sys::klu_l_common_struct

source ·
#[repr(C)]
pub struct klu_l_common_struct {
Show 24 fields pub tol: f64, pub memgrow: f64, pub initmem_amd: f64, pub initmem: f64, pub maxwork: f64, pub btf: c_long, pub ordering: c_long, pub scale: c_long, pub user_order: Option<unsafe extern "C" fn(arg1: c_long, arg2: *mut c_long, arg3: *mut c_long, arg4: *mut c_long, arg5: *mut klu_l_common_struct) -> c_long>, pub user_data: *mut c_void, pub halt_if_singular: c_long, pub status: c_long, pub nrealloc: c_long, pub structural_rank: c_long, pub numerical_rank: c_long, pub singular_col: c_long, pub noffdiag: c_long, pub flops: f64, pub rcond: f64, pub condest: f64, pub rgrowth: f64, pub work: f64, pub memusage: usize, pub mempeak: usize,
}

Fields§

§tol: f64§memgrow: f64§initmem_amd: f64§initmem: f64§maxwork: f64§btf: c_long§ordering: c_long§scale: c_long§user_order: Option<unsafe extern "C" fn(arg1: c_long, arg2: *mut c_long, arg3: *mut c_long, arg4: *mut c_long, arg5: *mut klu_l_common_struct) -> c_long>§user_data: *mut c_void§halt_if_singular: c_long§status: c_long§nrealloc: c_long§structural_rank: c_long§numerical_rank: c_long§singular_col: c_long§noffdiag: c_long§flops: f64§rcond: f64§condest: f64§rgrowth: f64§work: f64§memusage: usize§mempeak: usize

Trait Implementations§

source§

impl Clone for klu_l_common_struct

source§

fn clone(&self) -> klu_l_common_struct

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 klu_l_common_struct

source§

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

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

impl Copy for klu_l_common_struct

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.