refactor: EVERYTHING
This commit is contained in:
parent
c746e594ca
commit
7ab0898413
17 changed files with 1410 additions and 728 deletions
6
src/error.rs
Normal file
6
src/error.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
use ldap3_proto::LdapResultCode;
|
||||
|
||||
pub trait ReturnError {
|
||||
fn code(&self) -> LdapResultCode;
|
||||
fn message(&self) -> String;
|
||||
}
|
||||
Loading…
Reference in a new issue