pub trait ArtifactParser: IntoIterator<Item = ForensicData> {
// Required methods
fn name(&self) -> &'static str;
fn description(&self) -> &'static str;
fn version(&self) -> &'static str;
}pub trait ArtifactParser: IntoIterator<Item = ForensicData> {
// Required methods
fn name(&self) -> &'static str;
fn description(&self) -> &'static str;
fn version(&self) -> &'static str;
}