pub trait ToAnySubscriber {
// Required method
fn to_any_subscriber(&self) -> AnySubscriber;
}
Expand description
Converts a Subscriber
to a type-erased AnySubscriber
.
Required Methods§
Sourcefn to_any_subscriber(&self) -> AnySubscriber
fn to_any_subscriber(&self) -> AnySubscriber
Converts this type to its type-erased equivalent.