pub type EncodeResult<T, E = EncodeError> = Result<T, E>;
Expand description
The result of encoding (writing) pixel data
Aliased Type§
enum EncodeResult<T, E = EncodeError> {
Ok(T),
Err(E),
}
pub type EncodeResult<T, E = EncodeError> = Result<T, E>;
The result of encoding (writing) pixel data
enum EncodeResult<T, E = EncodeError> {
Ok(T),
Err(E),
}