Struct tracing_subscriber::reload::Handle [−][src]
pub struct Handle<L, S> { /* fields omitted */ }
Allows reloading the state of an associated Layer
.
Implementations
impl<L, S> Handle<L, S> where
L: Layer<S> + 'static,
S: Subscriber,
[src]
impl<L, S> Handle<L, S> where
L: Layer<S> + 'static,
S: Subscriber,
[src]pub fn reload(&self, new_layer: impl Into<L>) -> Result<(), Error>
[src]
Replace the current layer with the provided new_layer
.
pub fn modify(&self, f: impl FnOnce(&mut L)) -> Result<(), Error>
[src]
Invokes a closure with a mutable reference to the current layer, allowing it to be modified in place.
pub fn clone_current(&self) -> Option<L> where
L: Clone,
[src]
L: Clone,
Returns a clone of the layer’s current value if it still exists.
Otherwise, if the subscriber has been dropped, returns None
.
pub fn with_current<T>(&self, f: impl FnOnce(&L) -> T) -> Result<T, Error>
[src]
Invokes a closure with a borrowed reference to the current layer, returning the result (or an error if the subscriber no longer exists).
Trait Implementations
Auto Trait Implementations
impl<L, S> RefUnwindSafe for Handle<L, S>
impl<L, S> Send for Handle<L, S> where
L: Send + Sync,
L: Send + Sync,
impl<L, S> Sync for Handle<L, S> where
L: Send + Sync,
L: Send + Sync,
impl<L, S> Unpin for Handle<L, S>
impl<L, S> UnwindSafe for Handle<L, S>
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]