pub struct RecvMsg<T: IoVectoredBufMut, C: IoBufMut, S> { /* private fields */ }
Expand description
Receive data and source address with ancillary data into vectored buffer.
Implementations§
Trait Implementations§
source§impl<T: IoVectoredBufMut, C: IoBufMut, S: AsRawFd> OpCode for RecvMsg<T, C, S>
impl<T: IoVectoredBufMut, C: IoBufMut, S: AsRawFd> OpCode for RecvMsg<T, C, S>
source§impl<T: IoVectoredBufMut, C: IoBufMut, S: AsRawFd> OpCode for RecvMsg<T, C, S>
impl<T: IoVectoredBufMut, C: IoBufMut, S: AsRawFd> OpCode for RecvMsg<T, C, S>
source§fn create_entry(self: Pin<&mut Self>) -> OpEntry
fn create_entry(self: Pin<&mut Self>) -> OpEntry
Create submission entry.
source§fn call_blocking(self: Pin<&mut Self>) -> Result<usize>
fn call_blocking(self: Pin<&mut Self>) -> Result<usize>
Call the operation in a blocking way. This method will only be called if
[
create_entry
] returns OpEntry::Blocking
.Auto Trait Implementations§
impl<T, C, S> Freeze for RecvMsg<T, C, S>
impl<T, C, S> RefUnwindSafe for RecvMsg<T, C, S>where
T: RefUnwindSafe,
C: RefUnwindSafe,
impl<T, C, S> !Send for RecvMsg<T, C, S>
impl<T, C, S> !Sync for RecvMsg<T, C, S>
impl<T, C, S> !Unpin for RecvMsg<T, C, S>
impl<T, C, S> UnwindSafe for RecvMsg<T, C, S>where
T: UnwindSafe,
C: UnwindSafe,
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