Searched defs:DecodingResult (Results 1 – 2 of 2) sorted by relevance
29 enum DecodingResult { enum86 fn err(self: &ResultOfReader) -> DecodingResult; in err()136 fn next_frame_info(self: &mut Reader) -> DecodingResult; in next_frame_info()140 ) -> DecodingResult; in next_interlaced_row()212 impl From<Option<&png::DecodingError>> for ffi::DecodingResult { implementation275 fn err(&self) -> ffi::DecodingResult { in err()548 fn next_frame_info(&mut self) -> ffi::DecodingResult { in next_frame_info()557 fn next_interlaced_row<'a>(&'a mut self, row: &mut &'a [u8]) -> ffi::DecodingResult { in next_interlaced_row()
121 using DecodingResult = std::pair<DecodedFormatString, uint32_t>; typedef