pub enum ParsingState {
NewFrame,
DifTmLen(TracingEventId),
DifTm(TracingEventId, usize),
RangeOrdId(Option<TracingEventId>, usize),
RangeTm(Option<TracingEventId>, usize, u8),
}Variants§
NewFrame
DifTmLen(TracingEventId)
DifTm(TracingEventId, usize)
id, dif_tm_len
RangeOrdId(Option<TracingEventId>, usize)
RangeTm(Option<TracingEventId>, usize, u8)
Trait Implementations§
Source§impl Clone for ParsingState
impl Clone for ParsingState
Source§fn clone(&self) -> ParsingState
fn clone(&self) -> ParsingState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParsingState
impl Debug for ParsingState
Source§impl Default for ParsingState
impl Default for ParsingState
Source§fn default() -> ParsingState
fn default() -> ParsingState
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsingState
impl PartialEq for ParsingState
impl Copy for ParsingState
impl StructuralPartialEq for ParsingState
Auto Trait Implementations§
impl Freeze for ParsingState
impl RefUnwindSafe for ParsingState
impl Send for ParsingState
impl Sync for ParsingState
impl Unpin for ParsingState
impl UnwindSafe for ParsingState
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