Trait ParserConfigGet

Source
pub trait ParserConfigGet {
    // Required method
    fn get<P: Into<Path>>(&self, path: P) -> Option<&Literal>;
}

Required Methods§

Source

fn get<P: Into<Path>>(&self, path: P) -> Option<&Literal>

Gets the value at the given path.

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§