mirror of
https://github.com/fafhrd91/actix-web
synced 2025-07-01 00:44:26 +02:00
hide httpmessage mod
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
use std::future::Future;
|
||||
use std::io::{self, Write};
|
||||
use std::pin::Pin;
|
||||
//! Stream decoders.
|
||||
|
||||
use std::task::{Context, Poll};
|
||||
use std::{future::Future, io, io::Write as _, pin::Pin};
|
||||
|
||||
use actix_rt::task::{spawn_blocking, JoinHandle};
|
||||
use brotli2::write::BrotliDecoder;
|
||||
|
@ -1,8 +1,7 @@
|
||||
//! Stream encoder
|
||||
use std::future::Future;
|
||||
use std::io::{self, Write};
|
||||
use std::pin::Pin;
|
||||
//! Stream encoders.
|
||||
|
||||
use std::task::{Context, Poll};
|
||||
use std::{future::Future, io, io::Write as _, pin::Pin};
|
||||
|
||||
use actix_rt::task::{spawn_blocking, JoinHandle};
|
||||
use brotli2::write::BrotliEncoder;
|
||||
|
@ -1,4 +1,5 @@
|
||||
//! Content-Encoding support
|
||||
//! Content-Encoding support.
|
||||
|
||||
use std::io;
|
||||
|
||||
use bytes::{Bytes, BytesMut};
|
||||
|
Reference in New Issue
Block a user