pub trait FromStringLdapType {
type Error;
// Required method
fn parse(
entry_dn: &str,
attribute_name: &str,
value: String,
) -> Result<Self, Self::Error>
where Self: Sized;
}
Expand description
a primitive result that can be converted from an Ldap type that is returned as a String