[#absl-FormatConvertResult] = xref:absl.adoc[absl]::FormatConvertResult :relfileprefix: ../ :mrdocs: Indicates whether a call to AbslFormatConvert() was successful. == Synopsis Declared in `<absl/strings/str_format.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<xref:absl/FormatConversionCharSet.adoc[FormatConversionCharSet] C> struct FormatConvertResult; ---- == Description This return type informs the StrFormat extension framework (through ADL but using the return type) of what conversion characters are supported. It is strongly discouraged to return {false}, as this will result in an empty string in StrFormat. == Data Members [cols="1,4"] |=== | Name| Description | xref:absl/FormatConvertResult/value.adoc[`value`] | Whether the conversion was successful. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#