pub struct PgsParser<'a> { /* private fields */ }
Expand description
A parser for PGS files.
This struct is responsible for parsing PGS files into segments and creating display sets from those segments.
§Fields
sup_file_path
: The path to the SUP file to be parsed.segments
: A vector storing the parsed PGS segments.display_sets
: A vector of display sets created from the parsed segments.
Implementations§
Source§impl<'a> PgsParser<'a>
impl<'a> PgsParser<'a>
Sourcepub fn get_display_sets(&self) -> &Vec<PgsDisplaySet>
pub fn get_display_sets(&self) -> &Vec<PgsDisplaySet>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PgsParser<'a>
impl<'a> RefUnwindSafe for PgsParser<'a>
impl<'a> !Send for PgsParser<'a>
impl<'a> !Sync for PgsParser<'a>
impl<'a> Unpin for PgsParser<'a>
impl<'a> UnwindSafe for PgsParser<'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