IntoLayer

Trait IntoLayer 

Source
pub trait IntoLayer<C>{
    // Required method
    fn into_layer(self) -> AuthorizationLayer<C>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<C> IntoLayer<C> for Arc<Authorizer<C>>

Source§

impl<C> IntoLayer<C> for Vec<Arc<Authorizer<C>>>

Source§

impl<C> IntoLayer<C> for Vec<Authorizer<C>>

Source§

impl<C, const N: usize> IntoLayer<C> for [Arc<Authorizer<C>>; N]

Source§

impl<C, const N: usize> IntoLayer<C> for [Authorizer<C>; N]

Implementors§

Source§

impl<C> IntoLayer<C> for Authorizer<C>