Type Alias BindError

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

Bind error

Aliased Type§

pub enum BindError<T> {
    Ok(T),
    Err(Errno),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Errno)

Contains the error value