pub enum MintQuoteAccountingError {
AmountIssuedExceedsAmountPaid {
amount_paid: Amount,
amount_issued: Amount,
},
}Expand description
Errors from mint quote accounting validation.
Variants§
AmountIssuedExceedsAmountPaid
The response reports more issued ecash than paid amount.
Trait Implementations§
Source§impl Clone for MintQuoteAccountingError
impl Clone for MintQuoteAccountingError
Source§fn clone(&self) -> MintQuoteAccountingError
fn clone(&self) -> MintQuoteAccountingError
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 MintQuoteAccountingError
impl Debug for MintQuoteAccountingError
Source§impl Display for MintQuoteAccountingError
impl Display for MintQuoteAccountingError
impl Eq for MintQuoteAccountingError
Source§impl Error for MintQuoteAccountingError
impl Error for MintQuoteAccountingError
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 MintQuoteAccountingError
impl PartialEq for MintQuoteAccountingError
impl StructuralPartialEq for MintQuoteAccountingError
Auto Trait Implementations§
impl Freeze for MintQuoteAccountingError
impl RefUnwindSafe for MintQuoteAccountingError
impl Send for MintQuoteAccountingError
impl Sync for MintQuoteAccountingError
impl Unpin for MintQuoteAccountingError
impl UnsafeUnpin for MintQuoteAccountingError
impl UnwindSafe for MintQuoteAccountingError
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