[#deserialize_type] = deserialize_type :mrdocs: Dummy data type to identify deserializing constructors. == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct deserialize_type; ---- == Description By convention, a constructor of a type T with signature template <typename Stream> T::T(deserialize_type, Stream& s) is a deserializing constructor, which builds the type by deserializing it from s. If T contains const fields, this is likely the only way to do so. [.small]#Created with https://www.mrdocs.com[MrDocs]#