Returns true if the chunk contains references to children.
(&self)
| 136 | |
| 137 | /// Returns true if the chunk contains references to children. |
| 138 | pub fn is_chunkable(&self) -> bool { |
| 139 | (self.0 & Self::CHUNKABLE_MASK) != 0 |
| 140 | } |
| 141 | |
| 142 | /// Returns the compression algorithm ID (0-7). |
| 143 | pub fn compression_method(&self) -> u8 { |
no outgoing calls