pub trait OutputEvidence {
type Evidence;
// Required method
fn evidence(&self) -> Self::Evidence;
}Expand description
Extracts small copyable evidence before an output is queued for dispatch.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".