pub struct IssuingTransactionFuelData {
pub industry_product_code: Option<String>,
pub quantity_decimal: Option<String>,
pub type_: String,
pub unit: String,
pub unit_cost_decimal: String,
}
Fields§
§industry_product_code: Option<String>
Conexxus Payment System Product Code identifying the primary fuel product purchased.
quantity_decimal: Option<String>
The quantity of unit
s of fuel that was dispensed, represented as a decimal string with at most 12 decimal places.
type_: String
The type of fuel that was purchased.
One of diesel
, unleaded_plus
, unleaded_regular
, unleaded_super
, or other
.
unit: String
The units for quantity_decimal
.
One of charging_minute
, imperial_gallon
, kilogram
, kilowatt_hour
, liter
, pound
, us_gallon
, or other
.
unit_cost_decimal: String
The cost in cents per each unit of fuel, represented as a decimal string with at most 12 decimal places.
Trait Implementations§
Source§impl Clone for IssuingTransactionFuelData
impl Clone for IssuingTransactionFuelData
Source§fn clone(&self) -> IssuingTransactionFuelData
fn clone(&self) -> IssuingTransactionFuelData
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 IssuingTransactionFuelData
impl Debug for IssuingTransactionFuelData
Auto Trait Implementations§
impl Freeze for IssuingTransactionFuelData
impl RefUnwindSafe for IssuingTransactionFuelData
impl Send for IssuingTransactionFuelData
impl Sync for IssuingTransactionFuelData
impl Unpin for IssuingTransactionFuelData
impl UnwindSafe for IssuingTransactionFuelData
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