pub struct IssuingAuthorizationFuelData {
pub industry_product_code: Option<String>,
pub quantity_decimal: Option<String>,
pub type_: Option<IssuingAuthorizationFuelDataType>,
pub unit: Option<IssuingAuthorizationFuelDataUnit>,
pub unit_cost_decimal: Option<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_: Option<IssuingAuthorizationFuelDataType>The type of fuel that was purchased.
unit: Option<IssuingAuthorizationFuelDataUnit>The units for quantity_decimal.
unit_cost_decimal: Option<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 IssuingAuthorizationFuelData
impl Clone for IssuingAuthorizationFuelData
Source§fn clone(&self) -> IssuingAuthorizationFuelData
fn clone(&self) -> IssuingAuthorizationFuelData
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 IssuingAuthorizationFuelData
impl Debug for IssuingAuthorizationFuelData
Source§impl FromValueOpt for IssuingAuthorizationFuelData
impl FromValueOpt for IssuingAuthorizationFuelData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingAuthorizationFuelData
impl PartialEq for IssuingAuthorizationFuelData
Source§fn eq(&self, other: &IssuingAuthorizationFuelData) -> bool
fn eq(&self, other: &IssuingAuthorizationFuelData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingAuthorizationFuelData
impl StructuralPartialEq for IssuingAuthorizationFuelData
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationFuelData
impl RefUnwindSafe for IssuingAuthorizationFuelData
impl Send for IssuingAuthorizationFuelData
impl Sync for IssuingAuthorizationFuelData
impl Unpin for IssuingAuthorizationFuelData
impl UnsafeUnpin for IssuingAuthorizationFuelData
impl UnwindSafe for IssuingAuthorizationFuelData
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