Type Alias netstack3_core::error::Result

source ·
pub type Result<T> = Result<T, NetstackError>;
Expand description

Results returned from many functions in the netstack.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(NetstackError)

Contains the error value