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)
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".