Searched defs:DecodingResult (Results 1 – 2 of 2) sorted by relevance
30 enum DecodingResult { enum107 fn err(self: &ResultOfReader) -> DecodingResult; in err()159 fn next_frame_info(self: &mut Reader) -> DecodingResult; in next_frame_info()163 ) -> DecodingResult; in next_interlaced_row()245 impl From<Option<&png::DecodingError>> for ffi::DecodingResult { implementation334 fn err(&self) -> ffi::DecodingResult { in err()628 fn next_frame_info(&mut self) -> ffi::DecodingResult { in next_frame_info()636 fn next_interlaced_row<'a>(&'a mut self, row: &mut &'a [u8]) -> ffi::DecodingResult { in next_interlaced_row()
124 using DecodingResult = std::pair<DecodedFormatString, uint32_t>; typedef