Enum serde_lite::Error
source · [−]pub enum Error {
OutOfBounds,
UnsupportedConversion,
MissingField,
UnknownEnumVariant,
MissingEnumVariantContent,
InvalidKey(String),
InvalidValue(Cow<'static, str>),
NamedFieldErrors(ErrorList<NamedFieldError>),
UnnamedFieldErrors(ErrorList<UnnamedFieldError>),
Custom(Cow<'static, str>),
}Expand description
Error.
Variants
OutOfBounds
UnsupportedConversion
MissingField
UnknownEnumVariant
MissingEnumVariantContent
InvalidKey(String)
InvalidValue(Cow<'static, str>)
NamedFieldErrors(ErrorList<NamedFieldError>)
UnnamedFieldErrors(ErrorList<UnnamedFieldError>)
Custom(Cow<'static, str>)
Implementations
sourceimpl Error
impl Error
sourcepub fn invalid_value<T>(expected: T) -> Self where
T: ToString,
pub fn invalid_value<T>(expected: T) -> Self where
T: ToString,
Create an invalid value error with a given expected type name.
sourcepub const fn invalid_value_static(expected: &'static str) -> Self
pub const fn invalid_value_static(expected: &'static str) -> Self
Create an invalid value error with a given expected type name.
sourcepub fn custom<T>(msg: T) -> Self where
T: ToString,
pub fn custom<T>(msg: T) -> Self where
T: ToString,
Create a custom error with a given error message.
sourcepub const fn custom_static(msg: &'static str) -> Self
pub const fn custom_static(msg: &'static str) -> Self
Create a custom error with a given error message.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<ErrorList<NamedFieldError>> for Error
impl From<ErrorList<NamedFieldError>> for Error
sourcefn from(errors: ErrorList<NamedFieldError>) -> Self
fn from(errors: ErrorList<NamedFieldError>) -> Self
Converts to this type from the input type.
sourceimpl From<ErrorList<UnnamedFieldError>> for Error
impl From<ErrorList<UnnamedFieldError>> for Error
sourcefn from(errors: ErrorList<UnnamedFieldError>) -> Self
fn from(errors: ErrorList<UnnamedFieldError>) -> Self
Converts to this type from the input type.
sourceimpl From<NamedFieldError> for Error
impl From<NamedFieldError> for Error
sourcefn from(err: NamedFieldError) -> Self
fn from(err: NamedFieldError) -> Self
Converts to this type from the input type.
sourceimpl From<UnnamedFieldError> for Error
impl From<UnnamedFieldError> for Error
sourcefn from(err: UnnamedFieldError) -> Self
fn from(err: UnnamedFieldError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more