feat: add meta_name method to MetaPlugin trait

This commit is contained in:
Andrew Phillips
2025-05-22 13:32:49 -03:00
committed by Andrew Phillips (aider)
parent 815a818b39
commit 232807d2cc

View File

@@ -28,6 +28,8 @@ pub trait MetaPlugin {
// Update the meta plugin with new data // Update the meta plugin with new data
fn update(&mut self, data: &[u8]); fn update(&mut self, data: &[u8]);
fn meta_name(&mut self) -> String;
} }
use std::io::Write; use std::io::Write;