Expand description
“Owned” sockets
“Owned” sockets require T: 'static, and store messages in their deserialized T form,
rather as serialized bytes.
This module contains versions of the raw_owned socket types
that use a specific kind of storage.
Currently we support:
singlesockets, which use anOption<T>for storage, suitable for one-shot responsesstack_vecsockets, which use a heaplessDequefor storage, and have a const-generic size boundstd_boundedsocket, which use astdVecDequewith an upper limit on the capacity