[][src]Trait ldap3::adapters::IntoAdapterVec

pub trait IntoAdapterVec<'a, S> {
    pub fn into(self) -> Vec<Box<dyn Adapter<'a, S> + 'a>>;
}

Helper trait for Adapter instance/chain conversions.

Required methods

pub fn into(self) -> Vec<Box<dyn Adapter<'a, S> + 'a>>[src]

Loading content...

Implementations on Foreign Types

impl<'a, S> IntoAdapterVec<'a, S> for Vec<Box<dyn Adapter<'a, S> + 'a>>[src]

Loading content...

Implementors

impl<'a, A, S> IntoAdapterVec<'a, S> for A where
    A: Adapter<'a, S> + SoloMarker,
    S: AsRef<str> + Send + Sync + 'a, 
[src]

Loading content...