[−][src]Struct tokio::net::unix::datagram::SendHalf
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]
&'_ mut self,
buf: &'_ [u8],
target: P
) -> Result<usize> where
P: AsRef<Path> + Unpin,
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]
fn as_ref(&self) -> &UnixDatagram[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,