use std::fmt::{self, Debug, Display, Formatter};
#[derive(Eq, PartialEq)]
pub enum Error {
MissingY,
TooFewPoints,
}
pub type Result<T, E = Error> = std::result::Result<T, E>;
impl Error {
pub fn msg(&self) -> &'static str {
match self {
Error::MissingY => "Passed values is not even. Last `y` is missing",
Error::TooFewPoints => "Too few points. There should be more than one",
}
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str(self.msg())
}
}
impl Debug for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str(self.msg())
}
}
impl std::error::Error for Error {}