Trait tor_config::Flattenable

source ·
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§

source

fn has_field(f: &str) -> bool

Does this type have a field named s ?

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> Flattenable for Flatten<T, U>
where T: Flattenable, U: Flattenable,

Flatten may be nested