RESTinio
Loading...
Searching...
No Matches
Public Types | Static Public Attributes | List of all members
restinio::easy_parser::impl::producer_tag< Result_Type > Struct Template Reference

A special base class to be used with producers. More...

#include <easy_parser.hpp>

Public Types

using result_type = Result_Type
 

Static Public Attributes

static constexpr entity_type_t entity_type = entity_type_t::producer
 

Detailed Description

template<typename Result_Type>
struct restinio::easy_parser::impl::producer_tag< Result_Type >

A special base class to be used with producers.

Every producer class should have the following content:

{
public:
using result_type = ... // some producer-specific type.
static constexpr entity_type_t entity_type = entity_type_t::producer;
...
};
The class that implements "input stream".
entity_type_t
A marker for distinguish different kind of entities in parser.
expected_t< typename Producer::result_type, parse_error_t > try_parse(string_view_t from, Producer producer)
Perform the parsing of the specified content by using specified value producer.
run_on_this_thread_settings_t< Traits > on_this_thread()
A special marker for the case when http_server must be run on the context of the current thread.
nonstd::expected< T, E > expected_t
Definition expected.hpp:18
Since
v.0.6.1

Definition at line 945 of file easy_parser.hpp.

Member Typedef Documentation

◆ result_type

Definition at line 947 of file easy_parser.hpp.

Member Data Documentation

◆ entity_type

Definition at line 948 of file easy_parser.hpp.


The documentation for this struct was generated from the following file: