mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
d621ce1cf0
Fixes #14128
50 lines
1,009 B
Rust
50 lines
1,009 B
Rust
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
use std::fmt::{self, Display};
|
|
|
|
use serde::{de, ser};
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
pub enum Error {
|
|
Message(String),
|
|
|
|
ExpectedBoolean,
|
|
ExpectedInteger,
|
|
ExpectedNumber,
|
|
ExpectedString,
|
|
ExpectedArray,
|
|
ExpectedMap,
|
|
ExpectedEnum,
|
|
ExpectedObject,
|
|
ExpectedBuffer,
|
|
ExpectedDetachable,
|
|
|
|
ExpectedUtf8,
|
|
ExpectedLatin1,
|
|
|
|
LengthMismatch,
|
|
}
|
|
|
|
impl ser::Error for Error {
|
|
fn custom<T: Display>(msg: T) -> Self {
|
|
Error::Message(msg.to_string())
|
|
}
|
|
}
|
|
|
|
impl de::Error for Error {
|
|
fn custom<T: Display>(msg: T) -> Self {
|
|
Error::Message(msg.to_string())
|
|
}
|
|
}
|
|
|
|
impl Display for Error {
|
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
match self {
|
|
Error::Message(msg) => formatter.write_str(msg),
|
|
err => formatter.write_str(format!("serde_v8 error: {:?}", err).as_ref()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for Error {}
|