antenna-protocol 0.1.1

SansIO core driving the antenna P2P mesh protocol.
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use crate::PeerID;

/// Scheduled action identifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Scheduled {
    ReconnectAttempt { peer: PeerID },
}