pub type Result<T, E = Error> = core::result::Result<T, E>;
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("drawing to DrawTarget failed")]
DrawError,
#[error("ClearType::{0} is not supported by Mousefood")]
ClearTypeUnsupported(alloc::string::String),
}