struct
HPack::DecodeResult
- HPack::DecodeResult
- Struct
- Value
- Object
Overview
The result of one Decoder#decode_each call.
#decoded_size is the HTTP/2 field-section size of the whole block: the
sum of name.bytesize + value.bytesize + 32 over every decoded field,
including fields suppressed after the limit was crossed. #limit_exceeded
is true when a configured max_field_section_size was crossed.
Defined in:
decoder.crConstructors
Instance Method Summary
- #clone
- #copy_with(decoded_size _decoded_size = @decoded_size, limit_exceeded _limit_exceeded = @limit_exceeded)
- #decoded_size : UInt64
- #limit_exceeded : Bool
Constructor Detail
Instance Method Detail
def copy_with(decoded_size _decoded_size = @decoded_size, limit_exceeded _limit_exceeded = @limit_exceeded)
#