pub enum PaymentError {
EmptyReference,
}Expand description
Errors returned by payment primitives.
Variants§
EmptyReference
The reference was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for PaymentError
impl Clone for PaymentError
Source§fn clone(&self) -> PaymentError
fn clone(&self) -> PaymentError
Returns a duplicate 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 PaymentError
impl Debug for PaymentError
Source§impl Display for PaymentError
impl Display for PaymentError
Source§impl Error for PaymentError
impl Error for PaymentError
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 PartialEq for PaymentError
impl PartialEq for PaymentError
impl Copy for PaymentError
impl Eq for PaymentError
impl StructuralPartialEq for PaymentError
Auto Trait Implementations§
impl Freeze for PaymentError
impl RefUnwindSafe for PaymentError
impl Send for PaymentError
impl Sync for PaymentError
impl Unpin for PaymentError
impl UnsafeUnpin for PaymentError
impl UnwindSafe for PaymentError
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