Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Visit in datafusion_common::config - Rust
[go: Go Back, main page]

Trait datafusion_common::config::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)

Object Safety§

This trait is not object safe.

Implementors§