Struct io_uring::opcode::MsgRingSendFd
source · pub struct MsgRingSendFd { /* private fields */ }
Expand description
Send a message (with fixed FD) to a target ring.
Implementations§
source§impl MsgRingSendFd
impl MsgRingSendFd
pub fn new( ring_fd: impl UseFd, fixed_slot_src: Fixed, dest_slot_index: DestinationSlot, user_data: u64 ) -> Self
sourcepub const CODE: u8 = 40u8
pub const CODE: u8 = 40u8
The opcode of the operation. This can be passed to
Probe::is_supported
to check if this operation is
supported with the current kernel.
pub const fn opcode_flags(self, opcode_flags: u32) -> Self
pub fn build(self) -> Entry
Auto Trait Implementations§
impl Freeze for MsgRingSendFd
impl RefUnwindSafe for MsgRingSendFd
impl Send for MsgRingSendFd
impl Sync for MsgRingSendFd
impl Unpin for MsgRingSendFd
impl UnwindSafe for MsgRingSendFd
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