RawExtension implements the Extension interface
| 99 | |
| 100 | // RawExtension implements the Extension interface |
| 101 | type RawExtension struct { |
| 102 | Data []byte |
| 103 | Type int8 |
| 104 | } |
| 105 | |
| 106 | // ExtensionType implements Extension.ExtensionType, and returns r.Type |
| 107 | func (r *RawExtension) ExtensionType() int8 { return r.Type } |
nothing calls this directly
no outgoing calls
no test coverage detected