Enum quicr_core::Io [−][src]
pub enum Io { Transmit { destination: SocketAddrV6, packet: Box<[u8]>, }, TimerStart { connection: ConnectionHandle, timer: Timer, time: u64, }, TimerStop { connection: ConnectionHandle, timer: Timer, }, }
I/O operations to be immediately executed the backend.
Variants
Transmit
Fields of Transmit
destination: SocketAddrV6 | |
packet: Box<[u8]> |
TimerStart
Start or reset a timer
Fields of TimerStart
connection: ConnectionHandle | |
timer: Timer | |
time: u64 | Absolute μs |
TimerStop
Fields of TimerStop
connection: ConnectionHandle | |
timer: Timer |