Skip to main content

ChunkedDecoder

Struct ChunkedDecoder 

Source
pub struct ChunkedDecoder {
    pub state: ChunkedState,
    pub remaining: u64,
    pub current_chunk_size: u64,
    pub total_decoded: u64,
    pub max_total: u64,
    pub saw_last: bool,
    /* private fields */
}
Expand description

Chunked 解码器

Fields§

§state: ChunkedState

当前状态

§remaining: u64

剩余 chunk 字节数

§current_chunk_size: u64

当前 chunk 大小

§total_decoded: u64

已解码总字节数

§max_total: u64

最大允许字节数

§saw_last: bool

是否已遇到 0 大小块

Implementations§

Source§

impl ChunkedDecoder

Source

pub fn new(max_total: u64) -> Self

创建解码器

Source

pub fn reset(&mut self)

重置状态

Source

pub fn is_done(&self) -> bool

是否已完成

Source

pub fn feed(&mut self, input: &[u8]) -> Result<(Vec<u8>, usize), Http1Error>

推入数据并返回产出的解码字节

§参数
  • input: 输入字节流
§返回
  • Ok((output_vec, consumed)): 解码出的字节与消耗的输入字节数
  • Err(Http1Error): 解码错误

Trait Implementations§

Source§

impl Clone for ChunkedDecoder

Source§

fn clone(&self) -> ChunkedDecoder

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChunkedDecoder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.