pub trait Interpolate {
    // Required method
    fn interpolate(&self, ctx: &Context) -> Self;
}

Required Methods§

source

fn interpolate(&self, ctx: &Context) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Interpolate for String

Allow to use

source§

fn interpolate(&self, ctx: &Context) -> Self

Implementors§