pub enum AmsAddressError {
ParseError {
source: ParseIntError,
},
SplitError {
length: usize,
},
InvalidAddressLength {
length: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for AmsAddressError
impl Clone for AmsAddressError
Source§fn clone(&self) -> AmsAddressError
fn clone(&self) -> AmsAddressError
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 AmsAddressError
impl Debug for AmsAddressError
Source§impl Display for AmsAddressError
impl Display for AmsAddressError
impl Eq for AmsAddressError
Source§impl Error for AmsAddressError
impl Error for AmsAddressError
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 PartialEq for AmsAddressError
impl PartialEq for AmsAddressError
impl StructuralPartialEq for AmsAddressError
Auto Trait Implementations§
impl Freeze for AmsAddressError
impl RefUnwindSafe for AmsAddressError
impl Send for AmsAddressError
impl Sync for AmsAddressError
impl Unpin for AmsAddressError
impl UnsafeUnpin for AmsAddressError
impl UnwindSafe for AmsAddressError
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