pub struct OSI<'a> {
pub index: u8,
pub raw: &'a str,
pub service_code: Option<&'a str>,
pub airline: Option<&'a str>,
pub text: Option<&'a str>,
pub passenger_index: Option<u8>,
}
Expand description
The osi infomation of pnr.
Fields§
§index: u8
§raw: &'a str
§service_code: Option<&'a str>
§airline: Option<&'a str>
§text: Option<&'a str>
§passenger_index: Option<u8>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OSI<'a>
impl<'a> RefUnwindSafe for OSI<'a>
impl<'a> Send for OSI<'a>
impl<'a> Sync for OSI<'a>
impl<'a> Unpin for OSI<'a>
impl<'a> UnwindSafe for OSI<'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