pub struct TagParser(/* private fields */);
Expand description
Streaming parser currently parsing the SWF tags.
The recommended way to get a TagParser
instance is to first parse a header using
an SwfHeaderParser
.
This struct holds the internal state of the parser, including an internal buffer with the unparsed input provided so far.
This struct is logically an enum where each variant represents the state
of the parser. See InnerTagParser
for details on these states.
Implementations§
Auto Trait Implementations§
impl Freeze for TagParser
impl RefUnwindSafe for TagParser
impl Send for TagParser
impl Sync for TagParser
impl Unpin for TagParser
impl UnwindSafe for TagParser
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