type io.WriterTo

11 uses

	io (current package)
		io.go#L200: type WriterTo interface {
		io.go#L410: 	if wt, ok := src.(WriterTo); ok {
		io.go#L683: 	if _, ok := r.(WriterTo); ok {
		io.go#L702: 	return c.Reader.(WriterTo).WriteTo(w)
		multi.go#L67: var _ WriterTo = (*multiReader)(nil)

	bufio
		bufio.go#L526: 	if r, ok := b.rd.(io.WriterTo); ok {

	github.com/klauspost/compress/gzip
		gunzip.go#L336: 		n, err := z.decompressor.(io.WriterTo).WriteTo(mw)

	github.com/klauspost/compress/zstd
		decoder.go#L66: 	_ = io.WriterTo(&Decoder{})

	net
		net.go#L841: 	_ io.WriterTo = (*Buffers)(nil)

	net/http
		http.go#L183: 	_ io.WriterTo   = NoBody
		transfer.go#L1096: 	io.WriterTo