Skip to main content

Layer4Result

Type Alias Layer4Result 

Source
pub type Layer4Result<T> = Result<T>;
Expand description

Layer 4 统一 Result 类型

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value