(b []byte)
| 142 | } |
| 143 | |
| 144 | func (s *byteViewSink) SetBytes(b []byte) error { |
| 145 | *s.dst = ByteView{b: cloneBytes(b)} |
| 146 | return nil |
| 147 | } |
| 148 | |
| 149 | func (s *byteViewSink) SetString(v string) error { |
| 150 | *s.dst = ByteView{s: v} |
nothing calls this directly
no test coverage detected