Debug show std::string contents

Is there a way to make the debugger be a bit more intelligent about showing things like std::string? Take this example of the ssid field:

You can sort of find the contents by digging right down into the internals, its 4 levels deep in an item called _M_local_buf and appears one character per line. This makes it really hard to see the important data and creates a lot of usability friction. It would be really handy if the debugger showed the string contents right at the top level instead of “{…}”. Is there a way to accomplish that?