deno/serde_v8/error.rs
Heyang Zhou 92ebf4afe5
feat(ext/kv): key-value store (#18232)
This commit adds unstable "Deno.openKv()" API that allows to open
a key-value database at a specified path.

---------

Co-authored-by: Luca Casonato <hello@lcas.dev>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2023-03-22 12:13:24 +08:00

56 lines
1.1 KiB
Rust

// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::fmt::Display;
use std::fmt::{self};
use serde::de;
use serde::ser;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum Error {
Message(String),
ExpectedBoolean,
ExpectedInteger,
ExpectedNumber,
ExpectedString,
ExpectedArray,
ExpectedMap,
ExpectedEnum,
ExpectedObject,
ExpectedBuffer,
ExpectedDetachable,
ExpectedExternal,
ExpectedBigInt,
ExpectedUtf8,
ExpectedLatin1,
UnsupportedType,
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 {}