Trait BackendExt

Source
pub trait BackendExt: Backend {
    // Provided method
    fn extend<T>(self, other: T) -> CombinedBackend<Self, T>
       where T: Backend,
             Self: Sized { ... }
}

Provided Methods§

Source

fn extend<T>(self, other: T) -> CombinedBackend<Self, T>
where T: Backend, Self: Sized,

Extend backend to add more translations

Implementors§