1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Error type definitions.
use std::fmt;
/// An error with no information.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct WebPSimpleError;
impl fmt::Display for WebPSimpleError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("WebP format error")
}
}
impl std::error::Error for WebPSimpleError {}