pub struct ValueError {
pub got: String,
pub attr_type: &'static str,
pub key: &'static str,
}
Fields§
§got: String
§attr_type: &'static str
§key: &'static str
Trait Implementations§
Source§impl Clone for ValueError
impl Clone for ValueError
Source§fn clone(&self) -> ValueError
fn clone(&self) -> ValueError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ValueError
impl Debug for ValueError
Source§impl From<ValueError> for StructureError
impl From<ValueError> for StructureError
Source§fn from(err: ValueError) -> StructureError
fn from(err: ValueError) -> StructureError
Converts to this type from the input type.
Source§impl PartialEq for ValueError
impl PartialEq for ValueError
impl Eq for ValueError
impl StructuralPartialEq for ValueError
Auto Trait Implementations§
impl Freeze for ValueError
impl RefUnwindSafe for ValueError
impl Send for ValueError
impl Sync for ValueError
impl Unpin for ValueError
impl UnwindSafe for ValueError
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