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
TransmitFields of Transmit
destination: SocketAddrV6 | |
packet: Box<[u8]> |
TimerStartStart or reset a timer
Fields of TimerStart
connection: ConnectionHandle | |
timer: Timer | |
time: u64 | Absolute μs |
TimerStopFields of TimerStop
connection: ConnectionHandle | |
timer: Timer |