mirror of
https://github.com/actix/actix-extras.git
synced 2025-07-31 07:23:57 +02:00
add Debug impl
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#![allow(unused_imports, unused_variables, dead_code)]
|
||||
use std::fmt;
|
||||
use std::io::{self, Write};
|
||||
|
||||
use bytes::{BufMut, Bytes, BytesMut};
|
||||
@@ -41,6 +42,12 @@ pub struct Codec {
|
||||
te: ResponseEncoder,
|
||||
}
|
||||
|
||||
impl fmt::Debug for Codec {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f, "h1::Codec({:?})", self.flags)
|
||||
}
|
||||
}
|
||||
|
||||
impl Codec {
|
||||
/// Create HTTP/1 codec.
|
||||
///
|
||||
|
Reference in New Issue
Block a user