Struct io_uring::opcode::LinkTimeout
source · pub struct LinkTimeout { /* private fields */ }
Expand description
This request must be linked with another request through
Flags::IO_LINK
which is described below.
Unlike Timeout
, LinkTimeout
acts on the linked request, not the completion queue.
Implementations§
source§impl LinkTimeout
impl LinkTimeout
pub fn new(timespec: *const Timespec) -> Self
sourcepub const CODE: u8 = 15u8
pub const CODE: u8 = 15u8
The opcode of the operation. This can be passed to
Probe::is_supported
to check if this operation is
supported with the current kernel.