Trait LdapValue

Source
pub trait LdapValue: Display + Clone {
    // Required method
    fn write(&self) -> String;
}

Required Methods§

Source

fn write(&self) -> String

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl LdapValue for &str

Source§

fn write(&self) -> String

Source§

impl LdapValue for &String

Source§

fn write(&self) -> String

Source§

impl LdapValue for String

Source§

fn write(&self) -> String

Implementors§