Type Alias eva_common::hyper_tools::HResult

source ·
pub type HResult = Result<HContent, Error>;

Aliased Type§

enum HResult {
    Ok(HContent),
    Err(Error),
}

Variants§

§1.0.0

Ok(HContent)

Contains the success value

§1.0.0

Err(Error)

Contains the error value

Trait Implementations§

source§

impl<R, E> ErrLogger for Result<R, E>where E: Display,

source§

fn log_ef(self)

log error and forget the result
source§

fn log_efd(self)

log error as debug and forget the result
source§

fn log_err(self) -> Self

log error and keep the result
source§

fn log_ed(self) -> Self

log error as debug and keep the result
source§

impl HResultX for HResult