(m *Map, oid uint32, format int16, src []byte)
| 147 | } |
| 148 | |
| 149 | func (c BitsCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) { |
| 150 | if src == nil { |
| 151 | return nil, nil |
| 152 | } |
| 153 | |
| 154 | var box Bits |
| 155 | err := codecScan(c, m, oid, format, src, &box) |
| 156 | if err != nil { |
| 157 | return nil, err |
| 158 | } |
| 159 | return box, nil |
| 160 | } |
| 161 | |
| 162 | type scanPlanBinaryBitsToBitsScanner struct{} |
| 163 |
nothing calls this directly
no test coverage detected