Struct std::os::windows::io::BorrowedSocket [−][src]
#[repr(transparent)]pub struct BorrowedSocket<'socket> { /* fields omitted */ }
This is supported on Windows only.
Expand description
A borrowed socket.
This has a lifetime parameter to tie it to the lifetime of something that owns the socket.
This uses repr(transparent)
and has the representation of a host socket,
so it can be used in FFI in places where a socket is passed as an argument,
it is not captured or consumed, and it never has the value
INVALID_SOCKET
.
Implementations
Return a BorrowedSocket
holding the given raw socket.
Safety
The resource pointed to by raw
must remain open for the duration of
the returned BorrowedSocket
, and it must not have the value
INVALID_SOCKET
.
Trait Implementations
Extracts the underlying raw socket from this object.
Borrows the socket.