Trait ParserConfigSet

Source
pub trait ParserConfigSet {
    // Required method
    fn set<P: Into<Path>, L: Into<Literal>>(&mut self, path: P, value: L);
}

Required Methods§

Source

fn set<P: Into<Path>, L: Into<Literal>>(&mut self, path: P, value: L)

Sets 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§