pub trait CompilableAsDependency: CompilableAsContent { // Required method fn compile_as_dependency( &self, ctx: &Arc<Mutex<Context>>, ) -> Result<Option<String>, Box<dyn Error>>; }
Compile self and store the result in the given Context.
self
Context
Expected to return None if none of dependencies is missing from Context, or a name of a missing dependency, chosen arbitrarily.
None