type net/http.RoundTripper

20 uses

	net/http (current package)
		client.go#L61: 	Transport RoundTripper
		client.go#L116: type RoundTripper interface {
		client.go#L199: func (c *Client) transport() RoundTripper {
		client.go#L211: func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L320: func knownRoundTripperImpl(rt RoundTripper, req *Request) bool {
		client.go#L351: func setRequestCancel(req *Request, rt RoundTripper, deadline time.Time) (stopTimer func(), didTimeout func() bool) {
		filetransport.go#L31: func NewFileTransport(fs FileSystem) RoundTripper {
		filetransport.go#L49: func NewFileTransportFS(fsys fs.FS) RoundTripper {
		h2_bundle.go#L7435: 	upgradeFn := func(authority string, c *tls.Conn) RoundTripper {
		h2_bundle.go#L7450: 		t1.TLSNextProto = map[string]func(string, *tls.Conn) RoundTripper{
		transport.go#L44: var DefaultTransport RoundTripper = &Transport{
		transport.go#L251: 	TLSNextProto map[string]func(authority string, c *tls.Conn) RoundTripper
		transport.go#L342: 		npm := map[string]func(authority string, c *tls.Conn) RoundTripper{}
		transport.go#L381: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L505: func (t *Transport) alternateRoundTripper(req *Request) RoundTripper {
		transport.go#L509: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L816: func (t *Transport) RegisterProtocol(scheme string, rt RoundTripper) {
		transport.go#L819: 	oldMap, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L823: 	newMap := make(map[string]RoundTripper)
		transport.go#L1999: 	alt RoundTripper