Struct smoltcp::socket::SocketRef

source ·
pub struct SocketRef<'a, T: Session + 'a> { /* private fields */ }
Expand description

A smart pointer to a socket.

Allows the network stack to efficiently determine if the socket state was changed in any way.

Implementations§

Wrap a pointer to a socket to make a smart pointer.

Calling this function is only necessary if your code is using into_inner.

Unwrap a smart pointer to a socket.

The finalization code is not run. Prompt operation of the network stack depends on wrapping the returned pointer back and dropping it.

Calling this function is only necessary to achieve composability if you must map a &mut SocketRef<'a, XSocket> to a &'a mut XSocket (note the lifetimes); be sure to call [new] afterwards.

Trait Implementations§

The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

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

Returns the argument unchanged.

Calls U::from(self).

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

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.