Enum metfor::MetForErr[][src]

pub enum MetForErr {
    BelowAbsoluteZero,
    UnphysicalInput,
    InputOutOfRange,
    NegativePressure,
    VaporPressureTooHigh,
}

Error encountered during calculation.

Variants

Colder than absolute zero.

Invalid inputs, because they represent physically impossible values.

Input out of allowable range. This is usually for emperical methods which should not be allowed to extrapolate.

A negative pressure value was encountered.

A partial pressure was calculated as higher than the total atmospheric pressure.

Trait Implementations

impl Debug for MetForErr
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MetForErr
[src]

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

This method tests for !=.

impl Eq for MetForErr
[src]

impl Clone for MetForErr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MetForErr
[src]

Auto Trait Implementations

impl Send for MetForErr

impl Sync for MetForErr