#[repr(C)]pub struct gsl_odeiv2_system {
pub function: Option<unsafe extern "C" fn(t: f64, y: *const f64, dydt: *mut f64, params: *mut c_void) -> c_int>,
pub jacobian: Option<unsafe extern "C" fn(t: f64, y: *const f64, dfdy: *mut f64, dfdt: *mut f64, params: *mut c_void) -> c_int>,
pub dimension: usize,
pub params: *mut c_void,
}Fields§
§function: Option<unsafe extern "C" fn(t: f64, y: *const f64, dydt: *mut f64, params: *mut c_void) -> c_int>§jacobian: Option<unsafe extern "C" fn(t: f64, y: *const f64, dfdy: *mut f64, dfdt: *mut f64, params: *mut c_void) -> c_int>§dimension: usize§params: *mut c_voidTrait Implementations§
Source§impl Clone for gsl_odeiv2_system
impl Clone for gsl_odeiv2_system
Source§fn clone(&self) -> gsl_odeiv2_system
fn clone(&self) -> gsl_odeiv2_system
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for gsl_odeiv2_system
impl Debug for gsl_odeiv2_system
impl Copy for gsl_odeiv2_system
Auto Trait Implementations§
impl Freeze for gsl_odeiv2_system
impl RefUnwindSafe for gsl_odeiv2_system
impl !Send for gsl_odeiv2_system
impl !Sync for gsl_odeiv2_system
impl Unpin for gsl_odeiv2_system
impl UnwindSafe for gsl_odeiv2_system
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more