[][src]Module dia_files::version_info

0.7.0 (May 18th, 2019)

Changes

  • Changed 2 functions:

    This example is not tested
    pub fn read<R>(src: R, limit: Option<usize>) -> io::Result<Vec<u8>>
    where
        R: Read;
    
    pub fn read_to_string<R>(src: R, limit: Option<usize>) -> io::Result<String>
    where
        R: Read;

    into:

    This example is not tested
    pub fn read(src: &mut Read, limit: Option<usize>) -> io::Result<Vec<u8>>;
    pub fn read_to_string(src: &mut Read, limit: Option<usize>) -> io::Result<String>;
  • Updated documentation.

Dependencies

No dependencies.