mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
412 B
Rust
8 lines
412 B
Rust
//! Verdict types for dynamic verification results.
|
|
//!
|
|
//! The canonical definitions live in [`crate::evidence`] so they are always
|
|
//! present regardless of the `dynamic` feature flag. This module re-exports
|
|
//! them for use inside the dynamic pipeline without requiring callers to reach
|
|
//! into `evidence` directly.
|
|
|
|
pub use crate::evidence::{AttemptSummary, UnsupportedReason, VerifyResult, VerifyStatus};
|