peace_rt_model_core 0.0.4

Core runtime traits for the peace automation framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core runtime traits for the peace automation framework.
//!
//! These types are in this crate so that the `rt_model_native` and
//! `rt_model_web` crates are able to reference them and either use or provide
//! default implementations.

// Re-exports
pub use async_trait::async_trait;

pub use crate::{
    output_format::OutputFormat, output_format_parse_error::OutputFormatParseError,
    output_write::OutputWrite,
};

mod output_format;
mod output_format_parse_error;
mod output_write;