pub trait Values {
// Required method
fn get_value<'a>(&'a self, key: &str) -> Option<&'a dyn Any>;
}Expand description
A runtime value store for Template::render_with_values().
Required Methods§
Implementations on Foreign Types§
source§impl<K, V> Values for LinkedList<(K, V)>
Available on crate feature alloc only.
impl<K, V> Values for LinkedList<(K, V)>
Available on crate feature
alloc only.source§impl<T: Values + ?Sized> Values for RwLockReadGuard<'_, T>
Available on crate feature std only.
impl<T: Values + ?Sized> Values for RwLockReadGuard<'_, T>
Available on crate feature
std only.source§impl<T: Values + ?Sized> Values for RwLockWriteGuard<'_, T>
Available on crate feature std only.
impl<T: Values + ?Sized> Values for RwLockWriteGuard<'_, T>
Available on crate feature
std only.