[−][src]Struct tracing_tracy::TracyLayer
A tracing layer that collects data in Tracy profiling format.
Implementations
impl TracyLayer
[src]
pub fn new() -> Self
[src]
Create a new TracyLayer
.
Defaults to collecting stack traces.
pub fn with_stackdepth(self, stack_depth: u16) -> Self
[src]
Specify the maximum number of stack frames that will be collected.
Specifying 0 frames will disable stack trace collection.
Trait Implementations
impl Clone for TracyLayer
[src]
fn clone(&self) -> TracyLayer
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for TracyLayer
[src]
impl<S> Layer<S> for TracyLayer where
S: Subscriber + for<'a> LookupSpan<'a>,
[src]
S: Subscriber + for<'a> LookupSpan<'a>,
fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
[src]
fn on_exit(&self, id: &Id, _: Context<'_, S>)
[src]
fn on_event(&self, event: &Event<'_>, _: Context<'_, S>)
[src]
fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
[src]
fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool
[src]
fn new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
[src]
fn on_record(&self, _span: &Id, _values: &Record<'_>, _ctx: Context<'_, S>)
[src]
fn on_follows_from(&self, _span: &Id, _follows: &Id, _ctx: Context<'_, S>)
[src]
fn on_close(&self, _id: Id, _ctx: Context<'_, S>)
[src]
fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)
[src]
fn and_then<L>(self, layer: L) -> Layered<L, Self, S> where
L: Layer<S>,
[src]
L: Layer<S>,
fn with_subscriber(self, inner: S) -> Layered<Self, S, S>
[src]
Auto Trait Implementations
impl RefUnwindSafe for TracyLayer
impl Send for TracyLayer
impl Sync for TracyLayer
impl Unpin for TracyLayer
impl UnwindSafe for TracyLayer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,