type net/http.http2responseWriterState

12 uses

	net/http (current package)
		h2_bundle.go#L3637: 		rws := &http2responseWriterState{}
		h2_bundle.go#L5687: 	rws := http2responseWriterStatePool.Get().(*http2responseWriterState)
		h2_bundle.go#L5689: 	*rws = http2responseWriterState{} // zero all the fields
		h2_bundle.go#L5898: 	rws *http2responseWriterState
		h2_bundle.go#L5908: type http2responseWriterState struct {
		h2_bundle.go#L5935: type http2chunkWriter struct{ rws *http2responseWriterState }
		h2_bundle.go#L5939: func (rws *http2responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		h2_bundle.go#L5941: func (rws *http2responseWriterState) hasNonemptyTrailers() bool {
		h2_bundle.go#L5953: func (rws *http2responseWriterState) declareTrailer(k string) {
		h2_bundle.go#L5971: func (rws *http2responseWriterState) writeChunk(p []byte) (n int, err error) {
		h2_bundle.go#L6113: func (rws *http2responseWriterState) promoteUndeclaredTrailers() {
		h2_bundle.go#L6206: func (rws *http2responseWriterState) writeHeader(code int) {