pub enum ExtractingAttributeError {
SaidError(Error),
Unexpected(String),
}Variants§
Trait Implementations§
Source§impl Debug for ExtractingAttributeError
impl Debug for ExtractingAttributeError
Source§impl Display for ExtractingAttributeError
impl Display for ExtractingAttributeError
Source§impl Error for ExtractingAttributeError
impl Error for ExtractingAttributeError
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<Error> for ExtractingAttributeError
impl From<Error> for ExtractingAttributeError
Source§fn from(source: Error) -> ExtractingAttributeError
fn from(source: Error) -> ExtractingAttributeError
Converts to this type from the input type.
Source§impl From<ExtractingAttributeError> for InstructionError
impl From<ExtractingAttributeError> for InstructionError
Source§fn from(source: ExtractingAttributeError) -> InstructionError
fn from(source: ExtractingAttributeError) -> InstructionError
Converts to this type from the input type.
Source§impl Serialize for ExtractingAttributeError
impl Serialize for ExtractingAttributeError
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ExtractingAttributeError
impl RefUnwindSafe for ExtractingAttributeError
impl Send for ExtractingAttributeError
impl Sync for ExtractingAttributeError
impl Unpin for ExtractingAttributeError
impl UnsafeUnpin for ExtractingAttributeError
impl UnwindSafe for ExtractingAttributeError
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