pub struct IssuingTransactionFlightData {
pub departure_at: Option<i64>,
pub passenger_name: Option<String>,
pub refundable: Option<bool>,
pub segments: Option<Vec<IssuingTransactionFlightDataLeg>>,
pub travel_agency: Option<String>,
}
Fields§
§departure_at: Option<i64>
The time that the flight departed.
passenger_name: Option<String>
The name of the passenger.
refundable: Option<bool>
Whether the ticket is refundable.
segments: Option<Vec<IssuingTransactionFlightDataLeg>>
The legs of the trip.
travel_agency: Option<String>
The travel agency that issued the ticket.
Trait Implementations§
Source§impl Clone for IssuingTransactionFlightData
impl Clone for IssuingTransactionFlightData
Source§fn clone(&self) -> IssuingTransactionFlightData
fn clone(&self) -> IssuingTransactionFlightData
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 IssuingTransactionFlightData
impl Debug for IssuingTransactionFlightData
Source§impl FromValueOpt for IssuingTransactionFlightData
impl FromValueOpt for IssuingTransactionFlightData
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingTransactionFlightData
impl RefUnwindSafe for IssuingTransactionFlightData
impl Send for IssuingTransactionFlightData
impl Sync for IssuingTransactionFlightData
impl Unpin for IssuingTransactionFlightData
impl UnwindSafe for IssuingTransactionFlightData
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