pub struct Av<'a> {
pub dpt: Option<&'a str>,
pub arr: Option<&'a str>,
pub date: Option<&'a str>,
pub query: Option<&'a str>,
pub flights: Vec<AvFlight<'a>>,
pub raw_text: &'a str,
}Expand description
The result that av text parsed.
Fields§
§dpt: Option<&'a str>§arr: Option<&'a str>§date: Option<&'a str>§query: Option<&'a str>§flights: Vec<AvFlight<'a>>§raw_text: &'a strImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Av<'a>
impl<'a> RefUnwindSafe for Av<'a>
impl<'a> Send for Av<'a>
impl<'a> Sync for Av<'a>
impl<'a> Unpin for Av<'a>
impl<'a> UnwindSafe for Av<'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