Specifies how to join the error message in the original status and any additional message that has been streamed into the builder.

Synopsis

Declared in <absl/status/status_builder.h>

enum class MessageJoinStyle : int;

Members

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.

Created with MrDocs