Struct Pnr

Source
pub struct Pnr<'a> {
Show 16 fields pub infos: Option<Vec<&'a str>>, pub ssr_items: Option<Vec<SSR<'a>>>, pub osi_items: Option<Vec<OSI<'a>>>, pub seg_items: Option<Vec<SEG<'a>>>, pub nm_items: Option<Vec<NM<'a>>>, pub rmk_items: Option<Vec<RMK<'a>>>, pub other_items: Option<Vec<OtherItem<'a>>>, pub is_ticket_pnr: Option<bool>, pub is_cancelled_pnr: Option<bool>, pub is_group_pnr: Option<bool>, pub group_pnr_name: Option<&'a str>, pub pax_count: Option<u8>, pub pnr_code: Option<&'a str>, pub bpnr_code: Option<&'a str>, pub has_married_segment: Option<bool>, pub office_no: Option<&'a str>,
}
Expand description

The result that pnr text parsed.

Fields§

§infos: Option<Vec<&'a str>>§ssr_items: Option<Vec<SSR<'a>>>§osi_items: Option<Vec<OSI<'a>>>§seg_items: Option<Vec<SEG<'a>>>§nm_items: Option<Vec<NM<'a>>>§rmk_items: Option<Vec<RMK<'a>>>§other_items: Option<Vec<OtherItem<'a>>>§is_ticket_pnr: Option<bool>§is_cancelled_pnr: Option<bool>§is_group_pnr: Option<bool>§group_pnr_name: Option<&'a str>§pax_count: Option<u8>§pnr_code: Option<&'a str>§bpnr_code: Option<&'a str>§has_married_segment: Option<bool>§office_no: Option<&'a str>

Implementations§

Source§

impl<'a> Pnr<'a>

Source

pub fn parse(text: &'a str) -> Result<Self>

Trait Implementations§

Source§

impl<'a> Debug for Pnr<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Default for Pnr<'a>

Source§

fn default() -> Pnr<'a>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Pnr<'a>

§

impl<'a> RefUnwindSafe for Pnr<'a>

§

impl<'a> Send for Pnr<'a>

§

impl<'a> Sync for Pnr<'a>

§

impl<'a> Unpin for Pnr<'a>

§

impl<'a> UnwindSafe for Pnr<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.