[][src]Struct tokio::net::unix::datagram::SendHalf

pub struct SendHalf<'a>(_);
This is supported on crate feature uds only.

Borrowed send half of a UnixDatagram, created by split.

Implementations

impl<'_> SendHalf<'_>[src]

pub async fn send_to<P, '_, '_>(
    &'_ mut self,
    buf: &'_ [u8],
    target: P
) -> Result<usize> where
    P: AsRef<Path> + Unpin
[src]

Sends data on the socket to the specified address.

pub async fn send<'_, '_>(&'_ mut self, buf: &'_ [u8]) -> Result<usize>[src]

Sends data on the socket to the socket's peer.

Trait Implementations

impl<'_> AsRef<UnixDatagram> for SendHalf<'_>[src]

impl<'a> Debug for SendHalf<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for SendHalf<'a>

impl<'a> Send for SendHalf<'a>

impl<'a> Sync for SendHalf<'a>

impl<'a> Unpin for SendHalf<'a>

impl<'a> !UnwindSafe for SendHalf<'a>

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> Instrument 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.