pub struct Tracing<EPre, E, EPost>(pub EPre, pub E, pub EPost);
Expand description
A tracing Etable, with pre and post actions.
Tuple Fields§
§0: EPre
§1: E
§2: EPost
Trait Implementations§
Auto Trait Implementations§
impl<EPre, E, EPost> Freeze for Tracing<EPre, E, EPost>
impl<EPre, E, EPost> RefUnwindSafe for Tracing<EPre, E, EPost>
impl<EPre, E, EPost> Send for Tracing<EPre, E, EPost>
impl<EPre, E, EPost> Sync for Tracing<EPre, E, EPost>
impl<EPre, E, EPost> Unpin for Tracing<EPre, E, EPost>
impl<EPre, E, EPost> UnwindSafe for Tracing<EPre, E, EPost>
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
Source§impl<T> TrapConsume<T> for T
impl<T> TrapConsume<T> for T
Source§type Rest = Infallible
type Rest = Infallible
Rest type.
Source§fn consume(self) -> Result<T, Infallible>
fn consume(self) -> Result<T, Infallible>
Consume
T
to get Rest
.