Returns whether the stream has been read as a certain sized value.
(&self, size: u32)
| 43 | |
| 44 | /// Returns whether the stream has been read as a certain sized value. |
| 45 | pub fn read_as(&self, size: u32) -> bool { |
| 46 | self.sizes & size != 0 |
| 47 | } |
| 48 | |
| 49 | /// Returns the minimum alignment of the stream, given the reads we have seen for this stream. |
| 50 | pub fn min_alignment(&self) -> usize { |
no outgoing calls
no test coverage detected