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