Trait deltalake::datafusion::common::config::Visit

source ·
pub trait Visit {
    // Required methods
    fn some<V>(&mut self, key: &str, value: V, description: &'static str)
       where V: Display;
    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>(&mut self, key: &str, value: V, description: &'static str)
where V: Display,

source

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

Object Safety§

This trait is not object safe.

Implementors§