pub struct TotalsResponse {
pub outcome: TransactionOutcome,
pub result_code: String,
pub pos_total: String,
}Expand description
Raw totals response ('T').
Fields§
§outcome: TransactionOutcomeNormalized outcome.
result_code: StringRaw result code.
pos_total: StringPOS total (16 digits, cents), raw.
Trait Implementations§
Source§impl Clone for TotalsResponse
impl Clone for TotalsResponse
Source§fn clone(&self) -> TotalsResponse
fn clone(&self) -> TotalsResponse
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 TotalsResponse
impl Debug for TotalsResponse
Source§impl Default for TotalsResponse
impl Default for TotalsResponse
Source§fn default() -> TotalsResponse
fn default() -> TotalsResponse
Returns the “default value” for a type. Read more
impl Eq for TotalsResponse
Source§impl PartialEq for TotalsResponse
impl PartialEq for TotalsResponse
impl StructuralPartialEq for TotalsResponse
Auto Trait Implementations§
impl Freeze for TotalsResponse
impl RefUnwindSafe for TotalsResponse
impl Send for TotalsResponse
impl Sync for TotalsResponse
impl Unpin for TotalsResponse
impl UnsafeUnpin for TotalsResponse
impl UnwindSafe for TotalsResponse
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