samod-core 0.12.0

the core library for the samod automerge-repo implementation
Documentation
1
2
3
4
5
6
7
8
/// Indicates whether a connection was initiated locally or received from a remote peer
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ConnDirection {
    /// Connection initiated by this peer (we are the "initiating peer")
    Outgoing,
    /// Connection accepted from a remote peer (we are the "receiving peer")  
    Incoming,
}