1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use bytes::Bytes;
pub use rasn_ldap::{ResultCode, SearchRequestDerefAliases, SearchRequestScope};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Attribute {
pub name: String,
pub values: Vec<Bytes>,
}
pub type Attributes = Vec<Attribute>;
impl From<rasn_ldap::PartialAttribute> for Attribute {
fn from(raw: rasn_ldap::PartialAttribute) -> Self {
Attribute {
name: String::from_utf8_lossy(&raw.r#type).into_owned(),
values: raw.vals.into_iter().collect(),
}
}
}
impl From<Attribute> for rasn_ldap::PartialAttribute {
fn from(attr: Attribute) -> Self {
rasn_ldap::PartialAttribute::new(attr.name.into_bytes().into(), attr.values.into_iter().collect())
}
}
impl From<Attribute> for rasn_ldap::Attribute {
fn from(attr: Attribute) -> Self {
rasn_ldap::Attribute::new(attr.name.into_bytes().into(), attr.values.into_iter().collect())
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct SearchEntry {
pub dn: String,
pub attributes: Attributes,
}
impl From<rasn_ldap::SearchResultEntry> for SearchEntry {
fn from(raw: rasn_ldap::SearchResultEntry) -> Self {
SearchEntry {
dn: String::from_utf8_lossy(&raw.object_name).into_owned(),
attributes: raw.attributes.into_iter().map(Into::into).collect(),
}
}
}