pub struct ParseCallError;Expand description
Error returned when parsing a Call fails
Trait Implementations§
Source§impl Clone for ParseCallError
impl Clone for ParseCallError
Source§fn clone(&self) -> ParseCallError
fn clone(&self) -> ParseCallError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParseCallError
impl Debug for ParseCallError
Source§impl Display for ParseCallError
impl Display for ParseCallError
Source§impl Error for ParseCallError
impl Error for ParseCallError
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<ParseCallError> for ParseAuctionError
impl From<ParseCallError> for ParseAuctionError
Source§fn from(source: ParseCallError) -> Self
fn from(source: ParseCallError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseCallError
impl PartialEq for ParseCallError
Source§fn eq(&self, other: &ParseCallError) -> bool
fn eq(&self, other: &ParseCallError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ParseCallError
impl Eq for ParseCallError
impl StructuralPartialEq for ParseCallError
Auto Trait Implementations§
impl Freeze for ParseCallError
impl RefUnwindSafe for ParseCallError
impl Send for ParseCallError
impl Sync for ParseCallError
impl Unpin for ParseCallError
impl UnsafeUnpin for ParseCallError
impl UnwindSafe for ParseCallError
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