pub struct Fd<'a> {
pub org: Option<&'a str>,
pub dst: Option<&'a str>,
pub query_time: Option<&'a str>,
pub airline: Option<&'a str>,
pub command: Option<&'a str>,
pub currency: Option<&'a str>,
pub tpm: Option<&'a str>,
pub items: Option<Vec<FdItem<'a>>>,
pub raw_text: &'a str,
}Fields§
§org: Option<&'a str>§dst: Option<&'a str>§query_time: Option<&'a str>§airline: Option<&'a str>§command: Option<&'a str>§currency: Option<&'a str>§tpm: Option<&'a str>§items: Option<Vec<FdItem<'a>>>§raw_text: &'a strImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Fd<'a>
impl<'a> RefUnwindSafe for Fd<'a>
impl<'a> Send for Fd<'a>
impl<'a> Sync for Fd<'a>
impl<'a> Unpin for Fd<'a>
impl<'a> UnwindSafe for Fd<'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