Trait liquid_core::partials::PartialSource
source · [−]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
Enumerate all partial-templates.