Enum rgsl::GaussKonrodRule [] [src]

#[repr(C)]
pub enum GaussKonrodRule { 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

15 point Gauss-Kronrod rule

21 point Gauss-Kronrod rule

31 point Gauss-Kronrod rule

41 point Gauss-Kronrod rule

51 point Gauss-Kronrod rule

61 point Gauss-Kronrod rule

Trait Implementations

impl Clone for GaussKonrodRule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GaussKonrodRule
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for GaussKonrodRule
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for GaussKonrodRule
[src]

Formats the value using the given formatter.

impl Copy for GaussKonrodRule
[src]