pub trait PartialSource: Debug {
    fn contains(&self, name: &str) -> bool;
fn names(&self) -> Vec<&str>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn try_get<'a>(&'a self, name: &str) -> Option<Cow<'a, str>>; fn get<'a>(&'a self, name: &str) -> Result<Cow<'a, str>> { ... } }
Expand description

Partial-template source repository.

Required methods

Check if partial-template exists.

Enumerate all partial-templates.

Access a partial-template.

Provided methods

Access a partial-template

Implementors