pub trait Flattenable {
// Required method
fn has_field(f: &str) -> bool;
}Expand description
Types that can be used with Flatten
Usually, derived with
the Flattenable derive-deftly macro.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl Flattenable for MetricsConfigBuilder
impl Flattenable for PrometheusConfigBuilder
impl<T, U> Flattenable for Flatten<T, U>where
T: Flattenable,
U: Flattenable,
Flatten may be nested