pub struct LoggingInitResult {
pub guard: WorkerGuard,
pub warning: Option<String>,
}Expand description
Result returned after installing the tracing subscriber.
Fields§
§guard: WorkerGuardGuard that keeps the non-blocking logging worker alive.
warning: Option<String>Startup warnings produced while selecting writer or filter settings.
Auto Trait Implementations§
impl Freeze for LoggingInitResult
impl !RefUnwindSafe for LoggingInitResult
impl Send for LoggingInitResult
impl Sync for LoggingInitResult
impl Unpin for LoggingInitResult
impl UnsafeUnpin for LoggingInitResult
impl !UnwindSafe for LoggingInitResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more