Returns a string representation of the status this builder would produce.
Declared in <absl/status/status_builder.h>
std::string
ToString() const;
This produces the same string as would converting to a Status and calling operator<<, but it does so without side effects (e.g., logging). Therefore, it is safe to use from within an adapter object passed into With().
The string representation of the result status.