pub enum TraceEventType {
Open,
CloseOk(String),
CloseError(String),
CloseFailure(String),
CloseIncomplete(Needed),
}
Variants§
Trait Implementations§
Source§impl Clone for TraceEventType
impl Clone for TraceEventType
Source§fn clone(&self) -> TraceEventType
fn clone(&self) -> TraceEventType
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 TraceEventType
impl RefUnwindSafe for TraceEventType
impl Send for TraceEventType
impl Sync for TraceEventType
impl Unpin for TraceEventType
impl UnwindSafe for TraceEventType
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