pub struct FdItem<'a> {
pub index: Option<u8>,
pub carrier: Option<&'a str>,
pub ticket_type: Option<&'a str>,
pub ow_price_raw: Option<&'a str>,
pub ow_price: Option<f32>,
pub rt_price_raw: Option<&'a str>,
pub rt_price: Option<f32>,
pub cabin: Option<&'a str>,
pub class: Option<&'a str>,
pub begin_date: Option<&'a str>,
pub end_date: Option<&'a str>,
pub policy_no: Option<&'a str>,
}Fields§
§index: Option<u8>§carrier: Option<&'a str>§ticket_type: Option<&'a str>§ow_price_raw: Option<&'a str>§ow_price: Option<f32>§rt_price_raw: Option<&'a str>§rt_price: Option<f32>§cabin: Option<&'a str>§class: Option<&'a str>§begin_date: Option<&'a str>§end_date: Option<&'a str>§policy_no: Option<&'a str>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FdItem<'a>
impl<'a> RefUnwindSafe for FdItem<'a>
impl<'a> Send for FdItem<'a>
impl<'a> Sync for FdItem<'a>
impl<'a> Unpin for FdItem<'a>
impl<'a> UnwindSafe for FdItem<'a>
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