io_lifetimes

Struct OwnedSocket

1.63.0 · Source
pub struct OwnedSocket { /* private fields */ }
Expand description

An owned socket.

This closes the socket on drop.

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 a consumed argument or returned as an owned value, and it never has the value INVALID_SOCKET.

Implementations§

Source§

impl OwnedSocket

1.63.0 · Source

pub fn try_clone(&self) -> Result<OwnedSocket, Error>

Creates a new OwnedSocket instance that shares the same underlying object as the existing OwnedSocket instance.

Trait Implementations§

1.63.0 · Source§

impl AsRawSocket for OwnedSocket

Source§

fn as_raw_socket(&self) -> u32

Extracts the raw socket. Read more
1.63.0 · Source§

impl AsSocket for OwnedSocket

Source§

fn as_socket(&self) -> BorrowedSocket<'_>

Borrows the socket.
1.63.0 · Source§

impl Debug for OwnedSocket

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
1.63.0 · Source§

impl Drop for OwnedSocket

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
1.63.0 · Source§

impl From<TcpListener> for OwnedSocket

Source§

fn from(tcp_listener: TcpListener) -> OwnedSocket

Takes ownership of a TcpListener’s socket.

1.63.0 · Source§

impl From<TcpStream> for OwnedSocket

Source§

fn from(tcp_stream: TcpStream) -> OwnedSocket

Takes ownership of a TcpStream’s socket.

1.63.0 · Source§

impl From<UdpSocket> for OwnedSocket

Source§

fn from(udp_socket: UdpSocket) -> OwnedSocket

Takes ownership of a UdpSocket’s underlying socket.

1.63.0 · Source§

impl FromRawSocket for OwnedSocket

Source§

unsafe fn from_raw_socket(socket: u32) -> OwnedSocket

Constructs a new I/O object from the specified raw socket. Read more
1.63.0 · Source§

impl IntoRawSocket for OwnedSocket

Source§

fn into_raw_socket(self) -> u32

Consumes this object, returning the raw underlying socket. Read more
Source§

impl SocketlikeViewType for OwnedSocket

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsRawSocketlike for T
where T: AsRawSocket,

Source§

fn as_raw_socketlike(&self) -> u32

Returns the raw value.
Source§

impl<T> AsSocketlike for T
where T: AsSocket,

Source§

fn as_socketlike(&self) -> BorrowedSocket<'_>

Borrows the reference.
Source§

fn as_socketlike_view<Target>(&self) -> SocketlikeView<'_, Target>
where Target: SocketlikeViewType,

Return a borrowing view of a resource which dereferences to a &Target. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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> FromRawSocketlike for T
where T: FromRawSocket,

Source§

unsafe fn from_raw_socketlike(raw: u32) -> T

Constructs Self from the raw value.
Source§

impl<T> FromSocket for T
where T: From<OwnedSocket>,

Source§

fn from_socket(owned_socket: OwnedSocket) -> T

👎Deprecated since 1.0.0: FromSocket::from_socket is replaced by From<OwnedSocket>::from
Constructs a new instance of Self from the given socket.
Source§

fn from_into_socket<Owned: Into<OwnedSocket>>(into_owned: Owned) -> Self
where Self: Sized + From<OwnedSocket>,

Constructs a new instance of Self from the given socket converted from into_owned.
Source§

impl<T> FromSocketlike for T
where T: From<OwnedSocket>,

Source§

fn from_socketlike(owned: OwnedSocket) -> T

Constructs a new instance of Self from the given socketlike object.
Source§

fn from_into_socketlike<Owned>(owned: Owned) -> T
where Owned: IntoSocketlike,

Constructs a new instance of Self from the given socketlike object converted from into_owned.
Source§

impl<T, U> Into<U> for T
where 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> IntoRawSocketlike for T
where T: IntoRawSocket,

Source§

fn into_raw_socketlike(self) -> u32

Returns the raw value.
Source§

impl<T> IntoSocket for T
where OwnedSocket: From<T>,

Source§

fn into_socket(self) -> OwnedSocket

👎Deprecated since 1.0.0: IntoSocket is replaced by From<...> for OwnedSocket or Into<OwnedSocket>
Consumes this object, returning the underlying socket.
Source§

impl<T> IntoSocketlike for T
where T: Into<OwnedSocket>,

Source§

fn into_socketlike(self) -> OwnedSocket

Consumes this object, returning the underlying socketlike object. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.