pub const CHUNK_SIZE: usize = 0x800;Expand description
Size of chunks to be read from reader when looking for patterns.
In Matches (which in turn is used in scan and scan_first_match), bytes are read
from the provided Read type into a fixed-size internal buffer. The length of this buffer is
given by CHUNK_SIZE.