kmp-plugin-api 0.6.0

Public plugin API for the KMP kernel: evidence value and derivation traits, free of kernel internals
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

use super::interpreted_value_mention::InterpretedValueMention;

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct EvidenceInterpretationOutput {
    pub plugin: String,
    pub values: Vec<InterpretedValueMention>,
    pub diagnostics: Vec<String>,
}