(self)
| 17 | |
| 18 | impl CodecName { |
| 19 | pub fn as_str(self) -> &'static str { |
| 20 | match self { |
| 21 | CodecName::Sq8 => "sq8", |
| 22 | CodecName::Pq => "pq", |
| 23 | CodecName::Binary => "binary", |
| 24 | CodecName::RaBitQ => "rabitq", |
| 25 | CodecName::Bbq => "bbq", |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /// Prepared query form — opaque payload held by the caller between |
no outgoing calls
no test coverage detected