pub trait TracingConfig {
// Required method
fn set_filter(&self, filter: String) -> impl Future<Output = ()> + Send + '_;
}Expand description
Service for configuring tracing in plugins.
The plugin implements this, the host calls it via RPC to push filter config. This allows the host to be the single source of truth for log filtering.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.