pub enum EventStreamMode {
Raw,
Decoded,
Both,
}Expand description
Output stream strategy for ETW events.
Variants§
Raw
Emit only raw TraceEvent values.
Decoded
Emit only decoded DecodedEvent values.
Both
Emit both raw and decoded streams.
Trait Implementations§
Source§impl Clone for EventStreamMode
impl Clone for EventStreamMode
Source§fn clone(&self) -> EventStreamMode
fn clone(&self) -> EventStreamMode
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 EventStreamMode
impl Debug for EventStreamMode
Source§impl PartialEq for EventStreamMode
impl PartialEq for EventStreamMode
impl Copy for EventStreamMode
impl Eq for EventStreamMode
impl StructuralPartialEq for EventStreamMode
Auto Trait Implementations§
impl Freeze for EventStreamMode
impl RefUnwindSafe for EventStreamMode
impl Send for EventStreamMode
impl Sync for EventStreamMode
impl Unpin for EventStreamMode
impl UnsafeUnpin for EventStreamMode
impl UnwindSafe for EventStreamMode
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