actrpc-core 0.1.0

Core types and traits for ActRPC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use actrpc_core::DescribeValue;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, DescribeValue)]
struct Nested {
    enabled: bool,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, DescribeValue)]
struct Holder {
    nested: Nested,
}

fn main() {}