Returns true if `bytes` is any non-payload sentinel byte sequence.
(bytes: &[u8])
| 55 | |
| 56 | /// Returns true if `bytes` is any non-payload sentinel byte sequence. |
| 57 | pub fn is_cell_sentinel(bytes: &[u8]) -> bool { |
| 58 | is_cell_tombstone(bytes) || is_cell_gdpr_erasure(bytes) |
| 59 | } |
| 60 | |
| 61 | /// Returns true if `bytes` is the soft-delete tombstone sentinel. |
| 62 | pub fn is_cell_tombstone(bytes: &[u8]) -> bool { |
no test coverage detected