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