pub trait AsSocket {
// Required method
fn as_socket(&self) -> BorrowedSocket<'_>;
}
Available on Windows only.
Expand description
A trait to borrow the socket from an underlying object.
Required Methods§
1.63.0 · Sourcefn as_socket(&self) -> BorrowedSocket<'_>
fn as_socket(&self) -> BorrowedSocket<'_>
Borrows the socket.