Trait liquid_core::runtime::PartialStore
source · [−]pub trait PartialStore: 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(&self, name: &str) -> Option<Arc<dyn Renderable>>;
fn get(&self, name: &str) -> Result<Arc<dyn Renderable>>;
}Expand description
Available partial-templates for including.
Required methods
Enumerate all partial-templates.