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 units of fuel that was dispensed, represented as a decimal string with at most 12 decimal places.
type_: StringThe type of fuel that was purchased.
One of diesel, unleaded_plus, unleaded_regular, unleaded_super, or other.
unit: StringThe units for quantity_decimal.
One of charging_minute, imperial_gallon, kilogram, kilowatt_hour, liter, pound, us_gallon, or other.
unit_cost_decimal: StringThe 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 (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 IssuingTransactionFuelData
impl Debug for IssuingTransactionFuelData
Source§impl FromValueOpt for IssuingTransactionFuelData
impl FromValueOpt for IssuingTransactionFuelData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingTransactionFuelData
impl PartialEq for IssuingTransactionFuelData
Source§fn eq(&self, other: &IssuingTransactionFuelData) -> bool
fn eq(&self, other: &IssuingTransactionFuelData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingTransactionFuelData
impl StructuralPartialEq 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 UnsafeUnpin 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