pub trait Substitutor {
    fn get(&self, kw: &str) -> Option<String>;

    fn also<L: Into<Subst>>(&self, xl: L) -> ExtendedSubst<Self, Subst>
    where
        Self: Clone + Sized
, { ... } fn subst(&self, s: &str) -> Result<String, AE> { ... } fn ss(&self, s: &str) -> Result<Vec<String>, AE> { ... } fn gss(&self, s: &str) -> Result<Vec<String>, AE> { ... } }

Required Methods

Provided Methods

Implementors