Struct aws_smithy_json::deserialize::error::DeserializeError
source · pub struct DeserializeError { /* private fields */ }
Implementations§
source§impl DeserializeError
impl DeserializeError
sourcepub fn custom(message: impl Into<Cow<'static, str>>) -> Self
pub fn custom(message: impl Into<Cow<'static, str>>) -> Self
Returns a custom error without an offset.
sourcepub fn custom_source(
message: impl Into<Cow<'static, str>>,
source: impl Into<Box<dyn StdError + Send + Sync + 'static>>
) -> Self
pub fn custom_source( message: impl Into<Cow<'static, str>>, source: impl Into<Box<dyn StdError + Send + Sync + 'static>> ) -> Self
Returns a custom error with an error source without an offset.
sourcepub fn with_offset(self, offset: usize) -> Self
pub fn with_offset(self, offset: usize) -> Self
Adds an offset to the error.
Trait Implementations§
source§impl Debug for DeserializeError
impl Debug for DeserializeError
source§impl Display for DeserializeError
impl Display for DeserializeError
source§impl Error for DeserializeError
impl Error for DeserializeError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<EscapeError> for DeserializeError
impl From<EscapeError> for DeserializeError
source§fn from(err: EscapeError) -> Self
fn from(err: EscapeError) -> Self
Converts to this type from the input type.
source§impl From<TryFromNumberError> for DeserializeError
impl From<TryFromNumberError> for DeserializeError
source§fn from(_: TryFromNumberError) -> Self
fn from(_: TryFromNumberError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeserializeError
impl !RefUnwindSafe for DeserializeError
impl Send for DeserializeError
impl Sync for DeserializeError
impl Unpin for DeserializeError
impl !UnwindSafe for DeserializeError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more