1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use crate::config::user::UserConfig;
use serde::Serialize;
use tera::Context;
mod author;
mod misc;
pub trait Registry {
fn contains(&self, key: &str) -> bool;
fn get<T>(&self, key: &str) -> Option<T>;
fn insert<T: Serialize>(&mut self, key: &str, value: T);
}
pub trait VariableProvider {
fn populate(&self, ctx: &mut Context) -> bool;
fn priority(&self) -> u8;
}
pub trait ConfigurableVariableProvider {
fn populate(&self, ctx: &mut Context, user_config: &UserConfig) -> bool;
}
inventory::collect!(&'static dyn ConfigurableVariableProvider);
inventory::collect!(&'static dyn VariableProvider);