pub fn get_text_section_buffered<'a, R: Read + Seek>(
image: &'a mut R,
section_name: &'a str,
) -> Result<String, UkiError>Expand description
Buffered version of get_text_section.
See get_text_section for details. This version works with any Read + Seek
source instead of requiring the entire image in memory.