openrtc 0.2.1

OpenRTC: a Rust-first P2P runtime for device discovery, signaling, and iroh/QUIC networking.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Clone, Debug, PartialEq)]
pub struct PresenceLoopParams {
    pub user_id: String,
    pub device_name: String,
    pub ticket: String,
    pub metadata: Option<String>,
}

#[derive(Clone, Debug, PartialEq)]
pub enum PresenceCommand {
    UpdateNow,
    Stop,
}