Trait Interpolate

Source
pub trait Interpolate {
    // Required methods
    fn interpolate_values(&mut self, values: HashMap<String, String>) -> Self;
    fn interpolate_err(&mut self, e: String) -> Self;
}

Required Methods§

Source

fn interpolate_values(&mut self, values: HashMap<String, String>) -> Self

Source

fn interpolate_err(&mut self, e: String) -> Self

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§