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
impl<L, S> Clone for Handle<L, S>
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<L: Debug, S: Debug> Debug for Handle<L, S>
[src]
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[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>,