mirror of
https://forgejo.ellis.link/continuwuation/continuwuity/
synced 2026-09-27 05:18:00 +00:00
14 lines
311 B
Rust
14 lines
311 B
Rust
use std::fmt::Display;
|
|
|
|
use serde::{de, ser};
|
|
|
|
use crate::Error;
|
|
|
|
impl de::Error for Error {
|
|
fn custom<T: Display + ToString>(msg: T) -> Self { Self::SerdeDe(msg.to_string().into()) }
|
|
}
|
|
|
|
impl ser::Error for Error {
|
|
fn custom<T: Display + ToString>(msg: T) -> Self { Self::SerdeSer(msg.to_string().into()) }
|
|
}
|