Struct audit::sys::TokioSocket

pub struct TokioSocket(_);
Expand description

An I/O object representing a Netlink socket.

Trait Implementations§

§

impl AsRawFd for TokioSocket

§

fn as_raw_fd(&self) -> i32

Extracts the raw file descriptor. Read more
§

impl AsyncSocket for TokioSocket

§

fn socket_mut(&mut self) -> &mut Socket

Mutable access to underyling [Socket]

§

fn socket_ref(&self) -> &Socket

Access underyling [Socket]
§

fn new(protocol: isize) -> Result<TokioSocket, Error>

Wrapper for [Socket::new]
§

fn poll_send( &mut self, cx: &mut Context<'_>, buf: &[u8] ) -> Poll<Result<usize, Error>>

Polling wrapper for [Socket::send]
§

fn poll_send_to( &mut self, cx: &mut Context<'_>, buf: &[u8], addr: &SocketAddr ) -> Poll<Result<usize, Error>>

Polling wrapper for [Socket::send_to]
§

fn poll_recv<B>( &mut self, cx: &mut Context<'_>, buf: &mut B ) -> Poll<Result<(), Error>>where B: BufMut,

Polling wrapper for [Socket::recv] Read more
§

fn poll_recv_from<B>( &mut self, cx: &mut Context<'_>, buf: &mut B ) -> Poll<Result<SocketAddr, Error>>where B: BufMut,

Polling wrapper for [Socket::recv_from] Read more
§

fn poll_recv_from_full( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(Vec<u8, Global>, SocketAddr), Error>>

Polling wrapper for [Socket::recv_from_full] Read more
§

impl FromRawFd for TokioSocket

§

unsafe fn from_raw_fd(fd: i32) -> TokioSocket

Constructs a new instance of Self from the given raw file descriptor. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<S> AsyncSocketExt for Swhere S: AsyncSocket,

§

fn send<'a, 'b>(&'a mut self, buf: &'b [u8]) -> PollSend<'a, 'b, Self>

async fn send(&mut self, buf: &[u8]) -> io::Result<usize>
§

fn send_to<'a, 'b>( &'a mut self, buf: &'b [u8], addr: &'b SocketAddr ) -> PollSendTo<'a, 'b, Self>

async fn send(&mut self, buf: &[u8]) -> io::Result<usize>
§

fn recv<B, 'a, 'b>(&'a mut self, buf: &'b mut B) -> PollRecv<'a, 'b, Self, B>where B: BufMut,

async fn recv<B>(&mut self, buf: &mut [u8]) -> io::Result<()>
§

fn recv_from<B, 'a, 'b>( &'a mut self, buf: &'b mut B ) -> PollRecvFrom<'a, 'b, Self, B>where B: BufMut,

async fn recv<B>(&mut self, buf: &mut [u8]) -> io::Result<SocketAddr>
§

fn recv_from_full(&mut self) -> PollRecvFromFull<'_, Self>

async fn recrecv_from_full(&mut self) -> io::Result<(Vec<u8>, SocketAddr)>
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.