datafusion_common::config

Trait Visit

Source
pub trait Visit {
    // Required methods
    fn some<V: Display>(
        &mut self,
        key: &str,
        value: V,
        description: &'static str,
    );
    fn none(&mut self, key: &str, description: &'static str);
}
Expand description

An implementation trait used to recursively walk configuration

Required Methods§

Source

fn some<V: Display>(&mut self, key: &str, value: V, description: &'static str)

Source

fn none(&mut self, key: &str, description: &'static str)

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.

Implementors§