// plotters-iced
//// Iced backend for Plotters
// Copyright: 2022, Joylei <leingliu@gmail.com>
// License: MIT
usestd::error::Error as StdError;usestd::fmt;#[derive(Debug)]/// Indicates that some error occurred within the Iced backend
pubenumError{}implfmt::Display forError{fnfmt(&self, fmt:&mutfmt::Formatter)->fmt::Result{write!(fmt,"{self:?}")}}implStdError forError{}