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

Fields of Transmit

Start or reset a timer

Fields of TimerStart

Absolute μs

Fields of TimerStop

Trait Implementations

impl Debug for Io
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Io

impl Sync for Io