Skip to main content

png_rusty/
errors.rs

1pub type Error = Box<dyn std::error::Error>;
2pub type Result<T> = std::result::Result<T, Error>;