diff options
Diffstat (limited to 'mingling/src/program.rs')
| -rw-r--r-- | mingling/src/program.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mingling/src/program.rs b/mingling/src/program.rs index 5e9d1f2..3394a38 100644 --- a/mingling/src/program.rs +++ b/mingling/src/program.rs @@ -81,6 +81,8 @@ where pub trait ProgramCollect { fn render(any: AnyOutput, r: &mut RenderResult); fn do_chain(any: AnyOutput) -> Pin<Box<dyn Future<Output = ChainProcess> + Send>>; + fn has_renderer(any: &AnyOutput) -> bool; + fn has_chain(any: &AnyOutput) -> bool; } #[macro_export] |
