Module zeros::version_info[][src]

11.1.0 (April 21st, 2021)

Changes

  • HashWriter: changed functions:

    pub fn finish(mut self) -> IoResult<(Vec<u8>, W)>;
    pub fn finish_as_hex(self) -> IoResult<(String, W)>;
    

    into:

    pub fn finish(self) -> (Vec<u8>, W);
    pub fn finish_as_hex(self) -> (String, W);
  • Hash: implemented FromStr.

Dependencies

No dependencies.