fix: add static lifetime bound to MetaPlugin trait

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-26 18:26:01 -03:00
parent b73ba17f80
commit be60c230b2

View File

@@ -152,7 +152,7 @@ pub fn process_metadata_outputs(internal_name: &str, value: String, outputs: &st
})
}
pub trait MetaPlugin {
pub trait MetaPlugin where Self: 'static {
fn is_supported(&self) -> bool {
true
}