pub type BindError<T> = Result<T>;
Bind error
pub enum BindError<T> { Ok(T), Err(Errno), }
Contains the success value
Contains the error value