Struct actix_http::encoding::Encoder
source · pub struct Encoder<B> { /* private fields */ }
Implementations§
source§impl<B: MessageBody> Encoder<B>
impl<B: MessageBody> Encoder<B>
pub fn response( encoding: ContentEncoding, head: &mut ResponseHead, body: B, ) -> Self
Trait Implementations§
source§impl<B> MessageBody for Encoder<B>where
B: MessageBody,
impl<B> MessageBody for Encoder<B>where
B: MessageBody,
§type Error = EncoderError
type Error = EncoderError
The type of error that will be returned if streaming body fails. Read more
source§fn poll_next(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<Bytes, Self::Error>>>
fn poll_next( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Option<Result<Bytes, Self::Error>>>
Attempt to pull out the next chunk of body bytes. Read more
impl<'__pin, B> Unpin for Encoder<B>where
PinnedFieldsOf<__Origin<'__pin, B>>: Unpin,
Auto Trait Implementations§
impl<B> !Freeze for Encoder<B>
impl<B> !RefUnwindSafe for Encoder<B>
impl<B> Send for Encoder<B>where
B: Send,
impl<B> Sync for Encoder<B>where
B: Sync,
impl<B> !UnwindSafe for Encoder<B>
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