Struct io_uring::register::Restriction[][src]

#[repr(transparent)]pub struct Restriction(_);

An allowed feature of io_uring. You can set the allowed features with register_restrictions.

Requires the unstable feature.

Implementations

impl Restriction[src]

pub fn register_op(op: u8) -> Restriction[src]

Allow an io_uring_register opcode.

pub fn sqe_op(op: u8) -> Restriction[src]

Allow a submission queue event opcode.

pub fn sqe_flags_allowed(flags: u8) -> Restriction[src]

pub fn sqe_flags_required(flags: u8) -> Restriction[src]

Require the given submission queue event flags. These flags must be set on every submission.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.