Type Alias Result

Source
pub type Result<T> = Result<T, Error>;
Expand description

Error handling with the Result type for the Error type.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value

Trait Implementations§

Source§

impl From<DFloating> for Result<DFloating>

Source§

fn from(float: DFloating) -> Result<DFloating>

Converts to this type from the input type.
Source§

impl From<FFloating> for Result<FFloating>

Source§

fn from(float: FFloating) -> Result<FFloating>

Converts to this type from the input type.
Source§

impl From<GFloating> for Result<GFloating>

Source§

fn from(float: GFloating) -> Result<GFloating>

Converts to this type from the input type.
Source§

impl From<HFloating> for Result<HFloating>

Source§

fn from(float: HFloating) -> Result<HFloating>

Converts to this type from the input type.