#[repr(transparent)]
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

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

Trait Implementations

Extracts the raw socket. Read more
Borrows the socket.
Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Constructs a new I/O object from the specified raw socket. Read more
Constructs a new instance of Self from the given socket.
Constructs a new instance of Self from the given socket converted from into_owned. Read more
Consumes this object, returning the raw underlying socket. Read more
Consumes this object, returning the underlying socket.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Returns the raw value.
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Constructs Self from the raw value.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Returns the raw value.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.