#[non_exhaustive]#[repr(u32)]pub enum io_uring_msg_ring_flags {
IORING_MSG_DATA = 0,
IORING_MSG_SEND_FD = 1,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for io_uring_msg_ring_flags
impl Clone for io_uring_msg_ring_flags
Source§fn clone(&self) -> io_uring_msg_ring_flags
fn clone(&self) -> io_uring_msg_ring_flags
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for io_uring_msg_ring_flags
impl Debug for io_uring_msg_ring_flags
Source§impl Hash for io_uring_msg_ring_flags
impl Hash for io_uring_msg_ring_flags
Source§impl PartialEq for io_uring_msg_ring_flags
impl PartialEq for io_uring_msg_ring_flags
impl Copy for io_uring_msg_ring_flags
impl Eq for io_uring_msg_ring_flags
impl StructuralPartialEq for io_uring_msg_ring_flags
Auto Trait Implementations§
impl Freeze for io_uring_msg_ring_flags
impl RefUnwindSafe for io_uring_msg_ring_flags
impl Send for io_uring_msg_ring_flags
impl Sync for io_uring_msg_ring_flags
impl Unpin for io_uring_msg_ring_flags
impl UnwindSafe for io_uring_msg_ring_flags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more