actrpc-core 0.1.0

Core types and traits for ActRPC.
Documentation
1
2
3
4
5
6
7
use actrpc_core::DescribeValue;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, DescribeValue)]
enum Empty {}

fn main() {}