pub struct PaymentStatusResponse {
pub provider: PaymentProvider,
pub provider_reference: ProviderReference,
pub status: PaymentStatus,
}Expand description
Normalized payment status response.
Fields§
§provider: PaymentProviderProvider handling the payment.
provider_reference: ProviderReferenceProvider reference.
status: PaymentStatusNormalized status.
Trait Implementations§
Source§impl Clone for PaymentStatusResponse
impl Clone for PaymentStatusResponse
Source§fn clone(&self) -> PaymentStatusResponse
fn clone(&self) -> PaymentStatusResponse
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 PaymentStatusResponse
impl Debug for PaymentStatusResponse
Source§impl PartialEq for PaymentStatusResponse
impl PartialEq for PaymentStatusResponse
impl Eq for PaymentStatusResponse
impl StructuralPartialEq for PaymentStatusResponse
Auto Trait Implementations§
impl Freeze for PaymentStatusResponse
impl RefUnwindSafe for PaymentStatusResponse
impl Send for PaymentStatusResponse
impl Sync for PaymentStatusResponse
impl Unpin for PaymentStatusResponse
impl UnsafeUnpin for PaymentStatusResponse
impl UnwindSafe for PaymentStatusResponse
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