mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00

Split it into several files, move them into the domain folder, introduce `LdapError` for better control flow.
18 lines
400 B
Rust
18 lines
400 B
Rust
use ldap3_proto::LdapResultCode;
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub struct LdapError {
|
|
pub code: LdapResultCode,
|
|
pub message: String,
|
|
}
|
|
|
|
impl std::fmt::Display for LdapError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
f.write_str(&self.message)
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for LdapError {}
|
|
|
|
pub type LdapResult<T> = std::result::Result<T, LdapError>;
|