Enum rgsl::GaussKronrodRule[][src]

pub enum GaussKronrodRule {
    Gauss15,
    Gauss21,
    Gauss31,
    Gauss41,
    Gauss51,
    Gauss61,
}

The low-level integration rules in QUADPACK are identified by small integers (1-6). We’ll use symbolic constants to refer to them.

Variants

Gauss15

15 point Gauss-Kronrod rule

Gauss21

21 point Gauss-Kronrod rule

Gauss31

31 point Gauss-Kronrod rule

Gauss41

41 point Gauss-Kronrod rule

Gauss51

51 point Gauss-Kronrod rule

Gauss61

61 point Gauss-Kronrod rule

Trait Implementations

impl Clone for GaussKronrodRule[src]

impl Copy for GaussKronrodRule[src]

impl Debug for GaussKronrodRule[src]

impl PartialEq<GaussKronrodRule> for GaussKronrodRule[src]

impl PartialOrd<GaussKronrodRule> for GaussKronrodRule[src]

impl StructuralPartialEq for GaussKronrodRule[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.