pub struct Field15Parser;Expand description
A parser for ICAO Field 15 route strings
Implementations§
Source§impl Field15Parser
impl Field15Parser
Sourcepub fn parse(route: &str) -> Vec<Field15Element>
pub fn parse(route: &str) -> Vec<Field15Element>
Parse a Field 15 route string into a list of elements
The parser treats forward slash (/) as both whitespace and a token separator, similar to the reference Python implementation’s tokenization approach.
Auto Trait Implementations§
impl Freeze for Field15Parser
impl RefUnwindSafe for Field15Parser
impl Send for Field15Parser
impl Sync for Field15Parser
impl Unpin for Field15Parser
impl UnsafeUnpin for Field15Parser
impl UnwindSafe for Field15Parser
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