Skip to main content

HashChainViz

Trait HashChainViz 

Source
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§

Source

fn to_timeline(&self) -> Result<Framebuffer>

Create a timeline visualization of audit entries.

Source

fn to_confidence_trend(&self) -> Result<Framebuffer>

Create a confidence trend line over entries.

Source

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".

Implementors§