Home
last modified time | relevance | path

Searched defs:FrameDecoder (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/
H A Ddecoder.rs20 pub struct FrameDecoder<'a> { struct
28 impl<'a> FrameDecoder<'a> { argument
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/
H A Ddecoder.rs172 pub struct FrameDecoder { struct
173 buffer: Vec<u8>,
175 offset: usize,
176 max_frame_size: u32,
178 stage: Stage,
180 header: FrameHeader,
181 hpack: HpackDecoderLayer,
184 continuations: Continuations,
289 impl Default for FrameDecoder { implementation
312 impl FrameDecoder { implementation
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
H A Doutput.rs62 decoder: FrameDecoder, in new()