pub struct IssuingAuthorizationFleetReportedBreakdown {
pub fuel: Option<IssuingAuthorizationFleetFuelPriceData>,
pub non_fuel: Option<IssuingAuthorizationFleetNonFuelPriceData>,
pub tax: Option<IssuingAuthorizationFleetTaxData>,
}Fields§
§fuel: Option<IssuingAuthorizationFleetFuelPriceData>Breakdown of fuel portion of the purchase.
non_fuel: Option<IssuingAuthorizationFleetNonFuelPriceData>Breakdown of non-fuel portion of the purchase.
tax: Option<IssuingAuthorizationFleetTaxData>Information about tax included in this transaction.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationFleetReportedBreakdown
impl Clone for IssuingAuthorizationFleetReportedBreakdown
Source§fn clone(&self) -> IssuingAuthorizationFleetReportedBreakdown
fn clone(&self) -> IssuingAuthorizationFleetReportedBreakdown
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 FromValueOpt for IssuingAuthorizationFleetReportedBreakdown
impl FromValueOpt for IssuingAuthorizationFleetReportedBreakdown
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingAuthorizationFleetReportedBreakdown
impl PartialEq for IssuingAuthorizationFleetReportedBreakdown
Source§fn eq(&self, other: &IssuingAuthorizationFleetReportedBreakdown) -> bool
fn eq(&self, other: &IssuingAuthorizationFleetReportedBreakdown) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingAuthorizationFleetReportedBreakdown
impl StructuralPartialEq for IssuingAuthorizationFleetReportedBreakdown
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationFleetReportedBreakdown
impl RefUnwindSafe for IssuingAuthorizationFleetReportedBreakdown
impl Send for IssuingAuthorizationFleetReportedBreakdown
impl Sync for IssuingAuthorizationFleetReportedBreakdown
impl Unpin for IssuingAuthorizationFleetReportedBreakdown
impl UnsafeUnpin for IssuingAuthorizationFleetReportedBreakdown
impl UnwindSafe for IssuingAuthorizationFleetReportedBreakdown
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