[][src]Struct call_trace_tls::Context

pub struct Context { /* fields omitted */ }

The thread-local callback context for #[trace].

Methods

impl Context[src]

pub fn default_callback(ctx: &mut Context, event: Event)[src]

The default callback registered by Self::new().

pub fn stack(&self) -> &[CallContext][src]

Returns the current call stack.

pub fn top(&self) -> &CallContext[src]

Returns the top of the current call stack.

pub fn register_callback<F, G>(&mut self, f: F) where
    F: FnOnce(Option<Callback>) -> G,
    G: Fn(&mut Context, Event) + 'static, 
[src]

Registers a callback. A previously registered callback is passed to the outer closure.

pub fn unregister_callback(&mut self) -> Option<Callback>[src]

Unregisters a callback.

Auto Trait Implementations

impl !Send for Context

impl !Sync for Context

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]