pub struct PySocket { /* private fields */ }
Expand description

Socket implementation that can be shared between multiple Python processes.

Python cannot handle true multi-threaded applications due to the GIL, often resulting in reduced performance and only one core used by the application. To work around this, Python web applications usually create a socket with SO_REUSEADDR and SO_REUSEPORT enabled that can be shared between multiple Python processes, allowing you to maximize performance and use all available computing capacity of the host.

Implementations§

Create a new UNIX SharedSocket from an address, port and backlog. If not specified, the backlog defaults to 1024 connections.

Clone the inner socket allowing it to be shared between multiple Python processes.

Get a cloned inner socket.

Trait Implementations§

Formats the value using the given formatter. Read more
Performs the conversion.
Whether the pyclass is frozen. Read more
Class doc string
#[pyclass(subclass)]
#[pyclass(extends=…)]
#[pyclass(mapping)]
#[pyclass(sequence)]
Layout
Base class
This handles following two situations: Read more
Immutable or mutable
Specify this class has #[pyclass(dict)] or not.
Specify this class has #[pyclass(weakref)] or not.
The closest native ancestor. This is PyAny by default, and when you declare #[pyclass(extends=PyDict)], it’s PyDict. Read more
Utility type to make Py::as_ref work.
Class name.
Module name, if any.
Returns the PyTypeObject instance for this type.
Returns the safe abstraction over the type object.
Checks if object is an instance of this type or a subclass of this type.
Checks if object is an instance of this type.

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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Arguments for exception
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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more