[][src]Struct abscissa_core::trace::component::Tracing

pub struct Tracing { /* fields omitted */ }

Abscissa component for initializing the tracing subsystem

Methods

impl Tracing[src]

pub fn new(
    config: Config,
    color_choice: ColorChoice
) -> Result<Self, FrameworkError>
[src]

Create a new Tracing component from the given Config.

pub fn filter(&self) -> String[src]

Return the currently-active tracing filter.

pub fn reload_filter(&mut self, filter: impl Into<EnvFilter>)[src]

Reload the currently-active filter with the supplied value.

This can be used to provide a dynamic tracing filter endpoint.

Trait Implementations

impl<A> Component<A> for Tracing where
    A: Application
[src]

fn id(&self) -> Id[src]

Identifier for this component

fn version(&self) -> Version[src]

Version of this component

impl Debug for Tracing[src]

Auto Trait Implementations

impl RefUnwindSafe for Tracing

impl Send for Tracing

impl Sync for Tracing

impl Unpin for Tracing

impl UnwindSafe for Tracing

Blanket Implementations

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

impl<T> AsAny for T where
    T: Any
[src]

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

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

impl<T> Erased for T

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.