[][src]Trait actix_service::IntoTransform

pub trait IntoTransform<T, S> where
    T: Transform<S>, 
{ fn into_transform(self) -> T; }

Trait for types that can be converted to a TransformService

Required methods

fn into_transform(self) -> T

Convert to a TransformService

Loading content...

Implementors

impl<F, S, Req, Res> IntoTransform<FnTransform<F, S, Req, Res>, S> for F where
    F: FnMut(Req, &mut S) -> Res,
    Res: IntoFuture
[src]

impl<T, S> IntoTransform<T, S> for T where
    T: Transform<S>, 
[src]

Loading content...