[][src]Struct gsl_sys::gsl_sum_levin_u_workspace

#[repr(C)]pub struct gsl_sum_levin_u_workspace {
    pub size: usize,
    pub i: usize,
    pub terms_used: usize,
    pub sum_plain: f64,
    pub q_num: *mut f64,
    pub q_den: *mut f64,
    pub dq_num: *mut f64,
    pub dq_den: *mut f64,
    pub dsum: *mut f64,
}

Fields

size: usizei: usizeterms_used: usizesum_plain: f64q_num: *mut f64q_den: *mut f64dq_num: *mut f64dq_den: *mut f64dsum: *mut f64

Trait Implementations

impl Clone for gsl_sum_levin_u_workspace[src]

impl Copy for gsl_sum_levin_u_workspace[src]

impl Debug for gsl_sum_levin_u_workspace[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.