Struct actix_net::framed::IntoFramed
source · pub struct IntoFramed<T, U, F>where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,{ /* private fields */ }
Implementations§
Trait Implementations§
source§impl<T, U, F> NewService for IntoFramed<T, U, F>where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
impl<T, U, F> NewService for IntoFramed<T, U, F>where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
§type Service = IntoFramedService<T, U, F>
type Service = IntoFramedService<T, U, F>
The
Service
value created by this factory§type Future = FutureResult<<IntoFramed<T, U, F> as NewService>::Service, <IntoFramed<T, U, F> as NewService>::InitError>
type Future = FutureResult<<IntoFramed<T, U, F> as NewService>::Service, <IntoFramed<T, U, F> as NewService>::InitError>
The future of the
Service
instance.source§fn new_service(&self) -> Self::Future
fn new_service(&self) -> Self::Future
Create and return a new service value asynchronously.
Auto Trait Implementations§
impl<T, U, F> RefUnwindSafe for IntoFramed<T, U, F>where
F: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, U, F> Send for IntoFramed<T, U, F>where
T: Send,
impl<T, U, F> Sync for IntoFramed<T, U, F>where
F: Sync,
T: Sync,
impl<T, U, F> Unpin for IntoFramed<T, U, F>where
F: Unpin,
T: Unpin,
impl<T, U, F> UnwindSafe for IntoFramed<T, U, F>where
F: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
source§impl<T> IntoNewService<T> for Twhere
T: NewService,
impl<T> IntoNewService<T> for Twhere
T: NewService,
source§fn into_new_service(self) -> T
fn into_new_service(self) -> T
Convert to an
NewService
source§impl<T> NewServiceExt for Twhere
T: NewService + ?Sized,
impl<T> NewServiceExt for Twhere
T: NewService + ?Sized,
fn apply<S, I, F, R>(
self,
service: I,
f: F
) -> AndThenNewService<Self, ApplyNewService<S, F, R, Self::Response>>where
Self: Sized,
S: NewService<InitError = Self::InitError>,
S::Error: Into<<R::Future as Future>::Error>,
I: IntoNewService<S>,
F: Fn(Self::Response, &mut S::Service) -> R + Clone,
R: IntoFuture<Error = Self::Error>,
fn and_then<F, B>(self, new_service: F) -> AndThenNewService<Self, B>where
Self: Sized,
F: IntoNewService<B>,
B: NewService<Request = Self::Response, Error = Self::Error, InitError = Self::InitError>,
source§fn from_err<E>(self) -> FromErrNewService<Self, E>where
Self: Sized,
E: From<Self::Error>,
fn from_err<E>(self) -> FromErrNewService<Self, E>where
Self: Sized,
E: From<Self::Error>,
NewService
that create service to map this service’s error
and new service’s init error to any error
implementing From
for this services
Error`. Read moresource§fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B>where
Self: Sized,
F: IntoNewService<B>,
B: NewService<Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>,
fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B>where
Self: Sized,
F: IntoNewService<B>,
B: NewService<Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>,
Create
NewService
to chain on a computation for when a call to the
service finished, passing the result of the call to the next
service B
. Read more