Assignment operators
Declared in <net.h>
Deleted copy assignment; copies must go through Copy().
CSerializedNetMsg&
operator=(CSerializedNetMsg const& other) = delete;
» more...
Move-assign from another serialized message.
constexpr
CSerializedNetMsg&
operator=(CSerializedNetMsg&& other) = default;
» more...
a reference to this message.
| Name | Description |
|---|---|
| other | the message that would be copied from. |