Assignment operators
Declared in <absl/status/status.h>
Copy assignment operator.
Status&
operator=(Status const& x);
» more...
Move assignment operator. The moved-from state is valid but unspecified.
Status&
operator=(Status&& x) noexcept;
» more...
A reference to *this.
| Name | Description |
|---|---|
| x | The status to copy from. |