pub type DecodeResult<T, E = DecodeError> = Result<T, E>;Expand description
The result of decoding (reading) pixel data
Aliased Type§
enum DecodeResult<T, E = DecodeError> {
Ok(T),
Err(E),
}pub type DecodeResult<T, E = DecodeError> = Result<T, E>;The result of decoding (reading) pixel data
enum DecodeResult<T, E = DecodeError> {
Ok(T),
Err(E),
}