pub type Result<T> = Result<T, BindError>;
A specialized Result type for binding operations.
pub enum Result<T> { Ok(T), Err(BindError), }
Contains the success value
Contains the error value