pub struct PatItem<'a> {
pub index: Option<u8>,
pub seat_class: Option<&'a str>,
pub fare: Option<PatPrice<'a>>,
pub tax: Option<PatPrice<'a>>,
pub yq: Option<PatPrice<'a>>,
pub total: Option<f32>,
pub raw_text: Option<&'a str>,
}Fields§
§index: Option<u8>§seat_class: Option<&'a str>§fare: Option<PatPrice<'a>>§tax: Option<PatPrice<'a>>§yq: Option<PatPrice<'a>>§total: Option<f32>§raw_text: Option<&'a str>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PatItem<'a>
impl<'a> RefUnwindSafe for PatItem<'a>
impl<'a> Send for PatItem<'a>
impl<'a> Sync for PatItem<'a>
impl<'a> Unpin for PatItem<'a>
impl<'a> UnwindSafe for PatItem<'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