Any is an interface implemented by any expression type.
| 217 | |
| 218 | // Any is an interface implemented by any expression type. |
| 219 | type Any interface { |
| 220 | marshal(fam byte) ([]byte, error) |
| 221 | marshalData(fam byte) ([]byte, error) |
| 222 | unmarshal(fam byte, data []byte) error |
| 223 | } |
| 224 | |
| 225 | // MetaKey specifies which piece of meta information should be loaded. See also |
| 226 | // https://wiki.nftables.org/wiki-nftables/index.php/Matching_packet_metainformation |
no outgoing calls
no test coverage detected