pub struct PaymentResult {
pub transaction_id: String,
pub settlement_status: RailSettlementStatus,
pub metadata: Value,
}Expand description
Result of a capture, settlement, release, or refund operation.
Fields§
§transaction_id: StringStable rail reference for the resulting financial operation.
settlement_status: RailSettlementStatusRicher rail-side settlement state, mapped onto the canonical receipt enum.
metadata: ValueRail-specific metadata such as confirmations or idempotency keys.
Trait Implementations§
Source§impl Clone for PaymentResult
impl Clone for PaymentResult
Source§fn clone(&self) -> PaymentResult
fn clone(&self) -> PaymentResult
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 PaymentResult
impl Debug for PaymentResult
Source§impl PartialEq for PaymentResult
impl PartialEq for PaymentResult
impl StructuralPartialEq for PaymentResult
Auto Trait Implementations§
impl Freeze for PaymentResult
impl RefUnwindSafe for PaymentResult
impl Send for PaymentResult
impl Sync for PaymentResult
impl Unpin for PaymentResult
impl UnsafeUnpin for PaymentResult
impl UnwindSafe for PaymentResult
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