pub trait DirectReferenceLike {
// Required methods
fn matches_verified_answer(&self) -> bool;
fn policy_note(&self) -> &str;
}Expand description
Lightweight abstraction for direct-reference comparison payloads.
Required Methods§
fn matches_verified_answer(&self) -> bool
fn policy_note(&self) -> &str
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".