pub trait EvidenceValuePlugin: Send + Sync {
// Required methods
fn id(&self) -> &'static str;
fn interpret(
&self,
input: &EvidenceInterpretationInput,
) -> Result<EvidenceInterpretationOutput, InterpretationError>;
}Required Methods§
fn id(&self) -> &'static str
fn interpret( &self, input: &EvidenceInterpretationInput, ) -> Result<EvidenceInterpretationOutput, InterpretationError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".