pub enum ParsedEvent {
Instant {
tm: u64,
name: Rc<str>,
},
Range {
start: u64,
end: u64,
name: Rc<str>,
},
NamedRange {
name: Rc<str>,
end_name: Rc<str>,
start: u64,
end: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for ParsedEvent
impl Clone for ParsedEvent
Source§fn clone(&self) -> ParsedEvent
fn clone(&self) -> ParsedEvent
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 moreAuto Trait Implementations§
impl Freeze for ParsedEvent
impl RefUnwindSafe for ParsedEvent
impl !Send for ParsedEvent
impl !Sync for ParsedEvent
impl Unpin for ParsedEvent
impl UnwindSafe for ParsedEvent
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