pub struct ChainIdFormatError(/* private fields */);Expand description
Error returned when parsing an invalid chain ID string.
A valid chain ID must be in the format namespace:reference where both
components are non-empty strings.
Trait Implementations§
Source§impl Debug for ChainIdFormatError
impl Debug for ChainIdFormatError
Source§impl Display for ChainIdFormatError
impl Display for ChainIdFormatError
Source§impl Error for ChainIdFormatError
impl Error for ChainIdFormatError
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()
Auto Trait Implementations§
impl Freeze for ChainIdFormatError
impl RefUnwindSafe for ChainIdFormatError
impl Send for ChainIdFormatError
impl Sync for ChainIdFormatError
impl Unpin for ChainIdFormatError
impl UnwindSafe for ChainIdFormatError
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