Priority represents the Priority frame. https://tools.ietf.org/html/rfc7540#section-6.3
| 12 | // |
| 13 | // https://tools.ietf.org/html/rfc7540#section-6.3 |
| 14 | type Priority struct { |
| 15 | stream uint32 |
| 16 | weight byte |
| 17 | } |
| 18 | |
| 19 | func (pry *Priority) Type() FrameType { |
| 20 | return FramePriority |
nothing calls this directly
no outgoing calls
no test coverage detected