pub struct ActiveOutgoingRequest<Registry>where
Registry: PollableRegistry,{ /* private fields */ }Implementations§
Source§impl<Registry> ActiveOutgoingRequest<Registry>where
Registry: PollableRegistry,
impl<Registry> ActiveOutgoingRequest<Registry>where
Registry: PollableRegistry,
pub fn body(&mut self) -> &mut OutgoingBody<Registry>
pub fn into_parts( self, ) -> (OutgoingBody<Registry>, FutureIncomingResponse<Registry>)
Trait Implementations§
Source§impl<Registry> IntoFuture for ActiveOutgoingRequest<Registry>where
Registry: PollableRegistry,
impl<Registry> IntoFuture for ActiveOutgoingRequest<Registry>where
Registry: PollableRegistry,
Source§type Output = Result<IncomingResponse<Registry>, Error>
type Output = Result<IncomingResponse<Registry>, Error>
The output that the future will produce on completion.
Source§type IntoFuture = FutureIncomingResponse<Registry>
type IntoFuture = FutureIncomingResponse<Registry>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<Registry> !Freeze for ActiveOutgoingRequest<Registry>
impl<Registry> RefUnwindSafe for ActiveOutgoingRequest<Registry>
impl<Registry> Send for ActiveOutgoingRequest<Registry>
impl<Registry> Sync for ActiveOutgoingRequest<Registry>
impl<Registry> Unpin for ActiveOutgoingRequest<Registry>
impl<Registry> UnsafeUnpin for ActiveOutgoingRequest<Registry>
impl<Registry> UnwindSafe for ActiveOutgoingRequest<Registry>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more