Struct tracing_subscriber::reload::Handle [−][src]
Allows reloading the state of an associated Layer
.
Implementations
impl<L, S> Handle<L, S> where
L: Layer<S> + 'static,
S: Subscriber,
[src][−]
L: Layer<S> + 'static,
S: Subscriber,
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> 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,
impl<T> From<T> for T
[src][+]
impl<T> Instrument 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,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,