pub fn read_twoda_with_options<R: Read>(
reader: &mut R,
options: TwoDaBinaryOptions,
) -> Result<TwoDa, TwoDaBinaryError>Expand description
Reads a binary 2DA from a reader with explicit text options.
The stream is consumed from its current position.
ยงErrors
TwoDaBinaryError::Io when the stream will not read to end, and whatever
read_twoda_from_bytes_with_options reports for the bytes it collected.