Searched refs:DecoderInstruction (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/ |
H A D | encoder.rs | 22 use crate::h3::qpack::{DecoderInstPrefixBit, DecoderInstruction, EncoderInstruction, PrefixMask}; 740 state_def!(InstDecodeState, DecoderInstruction, DecInstIndex); 753 ) -> Result<Option<DecoderInstruction>, H3errorQpack> { in decode() argument 794 fn decode(self, buf: &mut &[u8]) -> DecResult<DecoderInstruction, InstDecodeState> { in decode() argument 797 DecResult::Decoded(DecoderInstruction::Ack { stream_id: index }) in decode() 800 DecResult::Decoded(DecoderInstruction::StreamCancel { stream_id: index }) in decode() 803 DecResult::Decoded(DecoderInstruction::InsertCountIncrement { increment: index }) in decode()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/ |
H A D | encoder.rs | 25 use crate::h3::qpack::{DecoderInstruction, PrefixMask}; 195 Some(DecoderInstruction::Ack { stream_id }) => self.ack(stream_id), in decode_ins() 197 Some(DecoderInstruction::StreamCancel { stream_id }) => { in decode_ins() 202 Some(DecoderInstruction::InsertCountIncrement { increment }) => { in decode_ins()
|
H A D | mod.rs | 223 pub(crate) enum DecoderInstruction { enum
|