#include <userver/formats/json/raw_string.hpp>
JSON fragment stored as text and written to output without re-encoding.
Definition at line 16 of file raw_string.hpp.
Public Member Functions | |
| RawString (const Value &value) | |
| Constructs from provided json object. | |
| RawString (std::string json) noexcept | |
| Constructs from provided json string. It is the user's responsibility to ensure that the input json string is valid. | |
| RawString () noexcept=default | |
| Constructs empty json object ({}). | |
| RawString (RawString &&) noexcept=default | |
| RawString (const RawString &)=default | |
| RawString & | operator= (RawString &&) noexcept=default |
| RawString & | operator= (const RawString &)=default |
| std::string_view | GetView () const noexcept |
| Returns view to json. | |
Definition at line 37 of file raw_string.hpp.