pub trait FromLdapType {
type Error;
// Required method
fn parse(values: LdapAttributeResultValues) -> Result<Self, Self::Error>
where Self: Sized;
}
Expand description
a type that can be parsed from an Ldap type (on the level where optional/required and single/multi-value matter as opposed to the primitives above)