pub trait HashChainViz<P: DecisionPath + Serialize> {
// Required methods
fn to_timeline(&self) -> Result<Framebuffer>;
fn to_confidence_trend(&self) -> Result<Framebuffer>;
fn to_chain_graph(&self) -> Result<Framebuffer>;
}Expand description
Visualization for hash chain audit trails.
Required Methods§
Sourcefn to_timeline(&self) -> Result<Framebuffer>
fn to_timeline(&self) -> Result<Framebuffer>
Create a timeline visualization of audit entries.
Sourcefn to_confidence_trend(&self) -> Result<Framebuffer>
fn to_confidence_trend(&self) -> Result<Framebuffer>
Create a confidence trend line over entries.
Sourcefn to_chain_graph(&self) -> Result<Framebuffer>
fn to_chain_graph(&self) -> Result<Framebuffer>
Create a provenance chain graph.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".