Skip to main content

fastnet/
types.rs

1//! Common types used across FastNet modules.
2
3use uuid::Uuid;
4
5/// Unique identifier for a peer connection.
6pub type PeerId = Uuid;
7
8/// Unique identifier for a transfer operation.
9pub type TransferId = Uuid;
10
11/// Unique identifier for a session.
12pub type SessionId = Uuid;