Specifies how to join the error message in the original status and any additional message that has been streamed into the builder.
Declared in <absl/status/status_builder.h>
enum class MessageJoinStyle : int;
| Name | Description |
|---|---|
kAnnotate | Join as if by util::Annotate, with a convenience separator between the original message and the additional one. |
kAppend | Append the additional message to the original message with no separator. |
kPrepend | Prepend the additional message to the original message with no separator. |