type net/http.http2StreamError

20 uses

	net/http (current package)
		h2_bundle.go#L1145: type http2StreamError struct {
		h2_bundle.go#L1151: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1152: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1155: func (e http2StreamError) Error() string {
		h2_bundle.go#L1717: 	if _, ok := err.(http2StreamError); ok {
		h2_bundle.go#L2804: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L2811: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L4430: 			if se, ok := wr.write.(http2StreamError); ok {
		h2_bundle.go#L4661: 		_, isReset := wr.write.(http2StreamError)
		h2_bundle.go#L4711: 			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
		h2_bundle.go#L4788: 		case http2StreamError:
		h2_bundle.go#L4903: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L4946: 	case http2StreamError:
		h2_bundle.go#L7064: 	if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8329: 		if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8731: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L8740: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9376: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
		h2_bundle.go#L9380: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L9675: 		if se, ok := wr.write.(http2StreamError); ok {