pub struct InvalidAttributeValue(/* private fields */);
Expand description
Returned when a function was unable to convert a string to an
AttributeValue
.
Trait Implementations§
Source§impl Debug for InvalidAttributeValue
impl Debug for InvalidAttributeValue
Source§impl Display for InvalidAttributeValue
impl Display for InvalidAttributeValue
Source§impl Error for InvalidAttributeValue
impl Error for InvalidAttributeValue
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<InvalidAttributeValue> for Error
impl From<InvalidAttributeValue> for Error
Source§fn from(err: InvalidAttributeValue) -> Self
fn from(err: InvalidAttributeValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidAttributeValue
impl RefUnwindSafe for InvalidAttributeValue
impl Send for InvalidAttributeValue
impl Sync for InvalidAttributeValue
impl Unpin for InvalidAttributeValue
impl UnwindSafe for InvalidAttributeValue
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