ankurah-proto 0.9.2

Inter-node communication protocol for Ankurah
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Item {
    /// The genesis clock for the system - this serves as the root of the clock tree for all entities in the system
    SysRoot,
    Collection {
        name: String,
    },
    #[serde(other)]
    Other,
}