forked from userver-framework/userver-framework.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannotated.html
1487 lines (1485 loc) · 466 KB
/
annotated.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- HTML header for doxygen 1.8.13-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.5"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property="og:image" content="logo_in_circle.png"/>
<meta property="og:image:alt" content="userver logo"/>
<link rel="icon" href="favicon.svg">
<title>userver: Class List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<link rel="stylesheet" href="doxygen-like.css">
<script src="highlight.pack.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="customdoxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><a id='logo-anchor' href="index.html"><img alt="Logo" src="logo.svg"/></a></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname"><a class="titlelink" href="index.html">userver
</a>
</div>
<div id="projectbrief"><a class="titlelink" href="index.html">C++ Async Framework (beta)</a></div>
</td>
<td style="float: right; padding-right: 15px; padding-top: 15px;">
<a href="https://github.com/userver-framework/" rel="noopener" target="_blank" class="titlelink">
<img src="github_logo.svg" style="filter: invert(100%);" alt="Github"/>
</a>
<a href="https://t.me/userver_en" rel="noopener" id='telegram_channel' target="_blank" class="titlelink">
<img src="telegram_logo.svg" alt="Telegram"/>
</a>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.5 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
<div class="header">
<div class="headertitle"><div class="title">Class List</div></div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span><span onclick="javascript:toggleLevel(6);">6</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="db/d8d/namespacecache.html" target="_self">cache</a></td><td class="desc">Utilities for caching </td></tr>
<tr id="row_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/df8/classcache_1_1CacheUpdateTrait.html" target="_self">CacheUpdateTrait</a></td><td class="desc">Base class for periodically updated caches </td></tr>
<tr id="row_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d6a/structcache_1_1Config.html" target="_self">Config</a></td><td class="desc"></td></tr>
<tr id="row_0_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d3e/classcache_1_1ConfigError.html" target="_self">ConfigError</a></td><td class="desc"></td></tr>
<tr id="row_0_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d1e/structcache_1_1ConfigPatch.html" target="_self">ConfigPatch</a></td><td class="desc"></td></tr>
<tr id="row_0_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d52/classcache_1_1EmptyCacheError.html" target="_self">EmptyCacheError</a></td><td class="desc"></td></tr>
<tr id="row_0_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d22/classcache_1_1ExpirableLruCache.html" target="_self">ExpirableLruCache</a></td><td class="desc">Class for expirable LRU cache. Use <a class="el" href="d1/d2c/classcache_1_1LruMap.html">cache::LruMap</a> for not expirable LRU Cache </td></tr>
<tr id="row_0_6_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d97/classcache_1_1LruCacheComponent.html" target="_self">LruCacheComponent</a></td><td class="desc">Base class for LRU-cache components </td></tr>
<tr id="row_0_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/df5/structcache_1_1LruCacheConfig.html" target="_self">LruCacheConfig</a></td><td class="desc"></td></tr>
<tr id="row_0_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5b/structcache_1_1LruCacheConfigStatic.html" target="_self">LruCacheConfigStatic</a></td><td class="desc"></td></tr>
<tr id="row_0_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/ddb/classcache_1_1LruCacheWrapper.html" target="_self">LruCacheWrapper</a></td><td class="desc"></td></tr>
<tr id="row_0_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d2c/classcache_1_1LruMap.html" target="_self">LruMap</a></td><td class="desc"></td></tr>
<tr id="row_0_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d9c/classcache_1_1LruSet.html" target="_self">LruSet</a></td><td class="desc"></td></tr>
<tr id="row_0_12_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dde/classcache_1_1NWayLRU.html" target="_self">NWayLRU</a></td><td class="desc"></td></tr>
<tr id="row_0_13_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/db9/classcache_1_1UpdateStatisticsScope.html" target="_self">UpdateStatisticsScope</a></td><td class="desc">Allows a specific cache to fill cache statistics during an <code>Update</code> </td></tr>
<tr id="row_0_14_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dce/classcache_1_1UpdateStatisticsScopeMock.html" target="_self">UpdateStatisticsScopeMock</a></td><td class="desc">Allows to test helper functions of <a class="el" href="da/df8/classcache_1_1CacheUpdateTrait.html#aeedbce6882ed3f9e32ad663be728fe50" title="Forces a cache update of specified type.">CacheUpdateTrait::Update</a> that use <a class="el" href="d8/db9/classcache_1_1UpdateStatisticsScope.html" title="Allows a specific cache to fill cache statistics during an Update">UpdateStatisticsScope</a> </td></tr>
<tr id="row_1_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">►</span><span class="icona"><span class="icon">N</span></span><b>clients</b></td><td class="desc"></td></tr>
<tr id="row_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_0_" class="arrow" onclick="toggleFolder('1_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d4/d8a/namespaceclients_1_1dns.html" target="_self">dns</a></td><td class="desc">DNS client </td></tr>
<tr id="row_1_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d1e/classclients_1_1dns_1_1Component.html" target="_self">Component</a></td><td class="desc">Caching DNS resolver component </td></tr>
<tr id="row_1_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d1a/classclients_1_1dns_1_1InvalidConfigException.html" target="_self">InvalidConfigException</a></td><td class="desc">Configuration error </td></tr>
<tr id="row_1_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d02/classclients_1_1dns_1_1NotResolvedException.html" target="_self">NotResolvedException</a></td><td class="desc">Host resolution error </td></tr>
<tr id="row_1_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_1_0_3_" class="arrow" onclick="toggleFolder('1_0_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d75/classclients_1_1dns_1_1Resolver.html" target="_self">Resolver</a></td><td class="desc"></td></tr>
<tr id="row_1_0_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/da0/structclients_1_1dns_1_1Resolver_1_1LookupSourceCounters.html" target="_self">LookupSourceCounters</a></td><td class="desc"></td></tr>
<tr id="row_1_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dc2/structclients_1_1dns_1_1ResolverConfig.html" target="_self">ResolverConfig</a></td><td class="desc">Caching DNS resolver static configuration </td></tr>
<tr id="row_1_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d54/classclients_1_1dns_1_1ResolverException.html" target="_self">ResolverException</a></td><td class="desc">Generic resolver error </td></tr>
<tr id="row_1_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da8/classclients_1_1dns_1_1UnsupportedDomainException.html" target="_self">UnsupportedDomainException</a></td><td class="desc">Unsupported domain error </td></tr>
<tr id="row_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_1_" class="arrow" onclick="toggleFolder('1_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="df/d66/namespaceclients_1_1http.html" target="_self">http</a></td><td class="desc">HTTP client helpers </td></tr>
<tr id="row_1_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dff/classclients_1_1http_1_1AuthFailedException.html" target="_self">AuthFailedException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d82/classclients_1_1http_1_1BadArgumentException.html" target="_self">BadArgumentException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de2/classclients_1_1http_1_1BaseCodeException.html" target="_self">BaseCodeException</a></td><td class="desc">Exception with string and error_code </td></tr>
<tr id="row_1_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d17/classclients_1_1http_1_1BaseException.html" target="_self">BaseException</a></td><td class="desc">Exception with string </td></tr>
<tr id="row_1_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dda/classclients_1_1http_1_1CancelException.html" target="_self">CancelException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dee/classclients_1_1http_1_1Client.html" target="_self">Client</a></td><td class="desc">HTTP client that returns a HTTP request builder from <a class="el" href="d5/dee/classclients_1_1http_1_1Client.html#ac84d7d47143a02e548c837618212ab0b" title="Returns a HTTP request builder type with preset values of User-Agent, Proxy and some of the Testsuite...">CreateRequest()</a> </td></tr>
<tr id="row_1_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d53/structclients_1_1http_1_1ClientSettings.html" target="_self">ClientSettings</a></td><td class="desc"></td></tr>
<tr id="row_1_1_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d8c/classclients_1_1http_1_1DNSProblemException.html" target="_self">DNSProblemException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_8_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/ddc/classclients_1_1http_1_1Form.html" target="_self">Form</a></td><td class="desc"></td></tr>
<tr id="row_1_1_9_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d63/classclients_1_1http_1_1HttpClientException.html" target="_self">HttpClientException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_10_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d4f/classclients_1_1http_1_1HttpException.html" target="_self">HttpException</a></td><td class="desc">Base class for <a class="el" href="d0/d63/classclients_1_1http_1_1HttpClientException.html">HttpClientException</a> and <a class="el" href="dd/d66/classclients_1_1http_1_1HttpServerException.html">HttpServerException</a> </td></tr>
<tr id="row_1_1_11_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d66/classclients_1_1http_1_1HttpServerException.html" target="_self">HttpServerException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_12_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dd6/structclients_1_1http_1_1LocalStats.html" target="_self">LocalStats</a></td><td class="desc">Represents all the local timings and statistics </td></tr>
<tr id="row_1_1_13_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dbd/classclients_1_1http_1_1NetworkProblemException.html" target="_self">NetworkProblemException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_14_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/df5/classclients_1_1http_1_1Request.html" target="_self">Request</a></td><td class="desc">Class for creating and performing new http requests </td></tr>
<tr id="row_1_1_15_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d3b/classclients_1_1http_1_1Response.html" target="_self">Response</a></td><td class="desc">Class that will be returned for successful request </td></tr>
<tr id="row_1_1_16_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d9b/classclients_1_1http_1_1ResponseFuture.html" target="_self">ResponseFuture</a></td><td class="desc">Allows to perform a request concurrently with other work without creating an extra coroutine for waiting </td></tr>
<tr id="row_1_1_17_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/ddc/classclients_1_1http_1_1SSLException.html" target="_self">SSLException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_18_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dee/classclients_1_1http_1_1StreamedResponse.html" target="_self">StreamedResponse</a></td><td class="desc">HTTP response for streamed API </td></tr>
<tr id="row_1_1_19_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d1f/classclients_1_1http_1_1TechnicalError.html" target="_self">TechnicalError</a></td><td class="desc"></td></tr>
<tr id="row_1_1_20_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/de6/classclients_1_1http_1_1TimeoutException.html" target="_self">TimeoutException</a></td><td class="desc"></td></tr>
<tr id="row_1_1_21_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de1/classclients_1_1http_1_1TooManyRedirectsException.html" target="_self">TooManyRedirectsException</a></td><td class="desc"></td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_2_" class="arrow" onclick="toggleFolder('2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="da/d79/namespacecompiler.html" target="_self">compiler</a></td><td class="desc">Compiler and C++ language related tweaks </td></tr>
<tr id="row_2_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d9f/classcompiler_1_1SelectValue.html" target="_self">SelectValue</a></td><td class="desc">Selects the proper value for the current compiler and standard library </td></tr>
<tr id="row_3_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_3_" class="arrow" onclick="toggleFolder('3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d0/d1f/namespacecomponents.html" target="_self">components</a></td><td class="desc">Contains functions and types to start a userver based service/tool </td></tr>
<tr id="row_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d75/classcomponents_1_1AuthCheckerSettings.html" target="_self">AuthCheckerSettings</a></td><td class="desc">Component that loads auth configuration settings from a <a class="el" href="da/dc7/classcomponents_1_1Secdist.html" title="Component that stores security related data (keys, passwords, ...).">components::Secdist</a> componenet if the latter was registered in <a class="el" href="dc/df0/classcomponents_1_1ComponentList.html" title="A list to keep a unique list of components to start with components::Run(), utils::DaemonMain() or co...">components::ComponentList</a> </td></tr>
<tr id="row_3_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">CachingComponentBase</a></td><td class="desc">Base class for caching components </td></tr>
<tr id="row_3_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/daa/classcomponents_1_1ClickHouse.html" target="_self">ClickHouse</a></td><td class="desc"><a class="el" href="d8/daa/classcomponents_1_1ClickHouse.html" title="ClickHouse client component.">ClickHouse</a> client component </td></tr>
<tr id="row_3_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dff/classcomponents_1_1ComponentConfig.html" target="_self">ComponentConfig</a></td><td class="desc"></td></tr>
<tr id="row_3_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/db1/classcomponents_1_1ComponentContext.html" target="_self">ComponentContext</a></td><td class="desc">Class to retrieve other components </td></tr>
<tr id="row_3_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/df0/classcomponents_1_1ComponentList.html" target="_self">ComponentList</a></td><td class="desc">A list to keep a unique list of components to start with <a class="el" href="d0/d1f/namespacecomponents.html#a17ac62098291e106b4ddad40a8cc179e">components::Run()</a>, <a class="el" href="d6/d84/namespaceutils.html#a5047c1275f53e699e26869c045ad3697">utils::DaemonMain()</a> or <a class="el" href="d0/d1f/namespacecomponents.html#a1bbc0de4bbd8399a1c3d1801a8bfeb17">components::RunOnce()</a> </td></tr>
<tr id="row_3_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d43/classcomponents_1_1ComponentsLoadCancelledException.html" target="_self">ComponentsLoadCancelledException</a></td><td class="desc">Exception that is thrown from <a class="el" href="da/db1/classcomponents_1_1ComponentContext.html#a4ba6078e836fc718192a75444f93f9f3" title="Finds a component of type T with specified name (if any) and returns the component after it was initi...">components::ComponentContext::FindComponent()</a> if a component load failed </td></tr>
<tr id="row_3_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/da7/classcomponents_1_1DumpConfigurator.html" target="_self">DumpConfigurator</a></td><td class="desc">Helper component that manages common configuration for userver dumps </td></tr>
<tr id="row_3_8_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_3_8_" class="arrow" onclick="toggleFolder('3_8_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d1a/classcomponents_1_1DynamicConfig.html" target="_self">DynamicConfig</a></td><td class="desc">Component that stores the runtime config </td></tr>
<tr id="row_3_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dc8/classcomponents_1_1DynamicConfig_1_1NoblockSubscriber.html" target="_self">NoblockSubscriber</a></td><td class="desc">Allows to subscribe to <code><a class="el" href="dd/d1a/classcomponents_1_1DynamicConfig.html" title="Component that stores the runtime config.">DynamicConfig</a></code> updates without waiting for the first update to complete. Primarily intended for internal use </td></tr>
<tr id="row_3_8_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d6b/classcomponents_1_1DynamicConfig_1_1Updater.html" target="_self">Updater</a></td><td class="desc">Class that provides update functionality for the config </td></tr>
<tr id="row_3_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1f/classcomponents_1_1DynamicConfigClient.html" target="_self">DynamicConfigClient</a></td><td class="desc">Component that starts a clients::dynamic_config::Client client </td></tr>
<tr id="row_3_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/da0/classcomponents_1_1DynamicConfigClientUpdater.html" target="_self">DynamicConfigClientUpdater</a></td><td class="desc">Component that does a periodic update of runtime configs </td></tr>
<tr id="row_3_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d9c/classcomponents_1_1DynamicConfigFallbacks.html" target="_self">DynamicConfigFallbacks</a></td><td class="desc">Component that setup runtime configs based on fallbacks from file </td></tr>
<tr id="row_3_12_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dd3/classcomponents_1_1FsCache.html" target="_self">FsCache</a></td><td class="desc">Component for storing files in memory </td></tr>
<tr id="row_3_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d5a/classcomponents_1_1HttpClient.html" target="_self">HttpClient</a></td><td class="desc">Component that manages <a class="el" href="d5/dee/classclients_1_1http_1_1Client.html" title="HTTP client that returns a HTTP request builder from CreateRequest().">clients::http::Client</a> </td></tr>
<tr id="row_3_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/db3/structcomponents_1_1InMemoryConfig.html" target="_self">InMemoryConfig</a></td><td class="desc"></td></tr>
<tr id="row_3_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d69/classcomponents_1_1LoggableComponentBase.html" target="_self">LoggableComponentBase</a></td><td class="desc">Base class for all <a class="el" href="dd/d1c/group__userver__components.html">application components</a>, it depends on components::Logger and <a class="el" href="d4/d23/classcomponents_1_1Tracer.html" title="Component that initializes the request tracing facilities.">components::Tracer</a> </td></tr>
<tr id="row_3_16_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/da4/classcomponents_1_1Logging.html" target="_self">Logging</a></td><td class="desc">Logging component </td></tr>
<tr id="row_3_17_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d7a/classcomponents_1_1LoggingConfigurator.html" target="_self">LoggingConfigurator</a></td><td class="desc">Helper component to configure logging </td></tr>
<tr id="row_3_18_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d48/classcomponents_1_1Manager.html" target="_self">Manager</a></td><td class="desc"></td></tr>
<tr id="row_3_19_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d21/classcomponents_1_1ManagerControllerComponent.html" target="_self">ManagerControllerComponent</a></td><td class="desc">Component that prepares the engine internals and starts all the other components </td></tr>
<tr id="row_3_20_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dda/classcomponents_1_1Mongo.html" target="_self">Mongo</a></td><td class="desc">MongoDB client component </td></tr>
<tr id="row_3_21_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d39/classcomponents_1_1MongoCache.html" target="_self">MongoCache</a></td><td class="desc">Base class for all caches polling mongo collection </td></tr>
<tr id="row_3_22_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d4a/classcomponents_1_1MultiMongo.html" target="_self">MultiMongo</a></td><td class="desc">Dynamically configurable MongoDB client component </td></tr>
<tr id="row_3_23_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d8d/classcomponents_1_1PostgreCache.html" target="_self">PostgreCache</a></td><td class="desc">Caching component for PostgreSQL. See <a class="el" href="d9/dde/pg_cache.html">Caching Component for PostgreSQL</a> </td></tr>
<tr id="row_3_24_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d92/classcomponents_1_1Postgres.html" target="_self">Postgres</a></td><td class="desc">PosgreSQL client component </td></tr>
<tr id="row_3_25_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d8c/classcomponents_1_1ProcessStarter.html" target="_self">ProcessStarter</a></td><td class="desc">Component for getting the <a class="el" href="d9/d4f/classengine_1_1subprocess_1_1ProcessStarter.html" title="Creates a new OS subprocess and executes a command in it.">engine::subprocess::ProcessStarter</a> </td></tr>
<tr id="row_3_26_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d23/classcomponents_1_1RabbitMQ.html" target="_self">RabbitMQ</a></td><td class="desc"><a class="el" href="d5/d23/classcomponents_1_1RabbitMQ.html" title="RabbitMQ (AMQP 0.9.1) client component.">RabbitMQ</a> (AMQP 0.9.1) client component </td></tr>
<tr id="row_3_27_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dd0/classcomponents_1_1Redis.html" target="_self">Redis</a></td><td class="desc"><a class="el" href="d6/dd0/classcomponents_1_1Redis.html" title="Redis client component.">Redis</a> client component </td></tr>
<tr id="row_3_28_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dc7/classcomponents_1_1Secdist.html" target="_self">Secdist</a></td><td class="desc">Component that stores security related data (keys, passwords, ...) </td></tr>
<tr id="row_3_29_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d0b/classcomponents_1_1Server.html" target="_self">Server</a></td><td class="desc">Component that listens for incomming requests, manages incomming connections and passes the requests to the appropriate handler </td></tr>
<tr id="row_3_30_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dfa/classcomponents_1_1SingleThreadedTaskProcessors.html" target="_self">SingleThreadedTaskProcessors</a></td><td class="desc">Component that starts multiple single threaded task processors </td></tr>
<tr id="row_3_31_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/daf/classcomponents_1_1StatisticsStorage.html" target="_self">StatisticsStorage</a></td><td class="desc">Component that keeps a <a class="el" href="d5/d18/classutils_1_1statistics_1_1Storage.html">utils::statistics::Storage</a> storage for metrics </td></tr>
<tr id="row_3_32_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/df4/classcomponents_1_1SystemStatisticsCollector.html" target="_self">SystemStatisticsCollector</a></td><td class="desc">Component for system resource usage statistics collection </td></tr>
<tr id="row_3_33_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dbc/classcomponents_1_1TcpAcceptorBase.html" target="_self">TcpAcceptorBase</a></td><td class="desc">Component for accepting incoming TCP connections </td></tr>
<tr id="row_3_34_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de2/classcomponents_1_1TestsuiteSupport.html" target="_self">TestsuiteSupport</a></td><td class="desc">Testsuite support component </td></tr>
<tr id="row_3_35_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d23/classcomponents_1_1Tracer.html" target="_self">Tracer</a></td><td class="desc">Component that initializes the request tracing facilities </td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_4_" class="arrow" onclick="toggleFolder('4_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="df/d2b/namespaceconcurrent.html" target="_self">concurrent</a></td><td class="desc">Locking stuff </td></tr>
<tr id="row_4_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">AsyncEventChannel</a></td><td class="desc"></td></tr>
<tr id="row_4_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d11/classconcurrent_1_1AsyncEventSource.html" target="_self">AsyncEventSource</a></td><td class="desc">The read-only side of an event channel. Events are delivered to listeners in a strict FIFO order </td></tr>
<tr id="row_4_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/de6/classconcurrent_1_1AsyncEventSubscriberScope.html" target="_self">AsyncEventSubscriberScope</a></td><td class="desc">Manages the subscription to events from an <a class="el" href="dc/d11/classconcurrent_1_1AsyncEventSource.html" title="The read-only side of an event channel. Events are delivered to listeners in a strict FIFO order.">AsyncEventSource</a> </td></tr>
<tr id="row_4_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dc7/classconcurrent_1_1BackgroundTaskStorage.html" target="_self">BackgroundTaskStorage</a></td><td class="desc"></td></tr>
<tr id="row_4_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d0a/classconcurrent_1_1BackgroundTaskStorageCore.html" target="_self">BackgroundTaskStorageCore</a></td><td class="desc"></td></tr>
<tr id="row_4_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d89/classconcurrent_1_1ConflatedEventChannel.html" target="_self">ConflatedEventChannel</a></td><td class="desc">A non-blocking version of '<a class="el" href="d6/d38/classconcurrent_1_1AsyncEventChannel.html">AsyncEventChannel</a>' </td></tr>
<tr id="row_4_6_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_6_" class="arrow" onclick="toggleFolder('4_6_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dd3/classconcurrent_1_1FunctionId.html" target="_self">FunctionId</a></td><td class="desc"></td></tr>
<tr id="row_4_6_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d1f/structconcurrent_1_1FunctionId_1_1Hash.html" target="_self">Hash</a></td><td class="desc"></td></tr>
<tr id="row_4_7_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_4_7_" class="arrow" onclick="toggleFolder('4_7_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d97/classconcurrent_1_1GenericQueue.html" target="_self">GenericQueue</a></td><td class="desc"></td></tr>
<tr id="row_4_7_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d1d/classconcurrent_1_1GenericQueue_1_1MultiConsumerSide.html" target="_self">MultiConsumerSide</a></td><td class="desc"></td></tr>
<tr id="row_4_7_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d05/classconcurrent_1_1GenericQueue_1_1MultiProducerSide.html" target="_self">MultiProducerSide</a></td><td class="desc"></td></tr>
<tr id="row_4_7_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d32/classconcurrent_1_1GenericQueue_1_1SingleConsumerSide.html" target="_self">SingleConsumerSide</a></td><td class="desc"></td></tr>
<tr id="row_4_7_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d27/classconcurrent_1_1GenericQueue_1_1SingleProducerSide.html" target="_self">SingleProducerSide</a></td><td class="desc"></td></tr>
<tr id="row_4_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dce/classconcurrent_1_1ItemMutex.html" target="_self">ItemMutex</a></td><td class="desc"></td></tr>
<tr id="row_4_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dfe/classconcurrent_1_1LockedPtr.html" target="_self">LockedPtr</a></td><td class="desc">Proxy class for locked access to data protected with locking::SharedLock<T> </td></tr>
<tr id="row_4_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d92/classconcurrent_1_1MpscQueue.html" target="_self">MpscQueue</a></td><td class="desc"></td></tr>
<tr id="row_4_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d09/classconcurrent_1_1MutexSet.html" target="_self">MutexSet</a></td><td class="desc">A dynamic set of mutexes </td></tr>
<tr id="row_4_12_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d57/classconcurrent_1_1Variable.html" target="_self">Variable</a></td><td class="desc"></td></tr>
<tr id="row_5_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_5_" class="arrow" onclick="toggleFolder('5_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d7/d22/namespacecongestion__control.html" target="_self">congestion_control</a></td><td class="desc">Congestion Control </td></tr>
<tr id="row_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dac/classcongestion__control_1_1Component.html" target="_self">Component</a></td><td class="desc"><a class="el" href="de/dac/classcongestion__control_1_1Component.html" title="Component to limit too active requests, also known as CC.">Component</a> to limit too active requests, also known as CC </td></tr>
<tr id="row_5_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d86/classcongestion__control_1_1Controller.html" target="_self">Controller</a></td><td class="desc"></td></tr>
<tr id="row_5_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d8a/structcongestion__control_1_1ControllerInfo.html" target="_self">ControllerInfo</a></td><td class="desc"></td></tr>
<tr id="row_5_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de4/structcongestion__control_1_1Limit.html" target="_self">Limit</a></td><td class="desc"></td></tr>
<tr id="row_5_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d4a/classcongestion__control_1_1Limiter.html" target="_self">Limiter</a></td><td class="desc"></td></tr>
<tr id="row_5_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/de5/structcongestion__control_1_1Policy.html" target="_self">Policy</a></td><td class="desc"></td></tr>
<tr id="row_5_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d90/structcongestion__control_1_1PolicyState.html" target="_self">PolicyState</a></td><td class="desc"></td></tr>
<tr id="row_5_7_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_5_7_" class="arrow" onclick="toggleFolder('5_7_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d13/classcongestion__control_1_1Sensor.html" target="_self">Sensor</a></td><td class="desc"></td></tr>
<tr id="row_5_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d92/structcongestion__control_1_1Sensor_1_1Data.html" target="_self">Data</a></td><td class="desc"></td></tr>
<tr id="row_5_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d55/structcongestion__control_1_1Stats.html" target="_self">Stats</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_6_" class="arrow" onclick="toggleFolder('6_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="de/d36/namespacecrypto.html" target="_self">crypto</a></td><td class="desc">Cryptography support </td></tr>
<tr id="row_6_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dd6/classcrypto_1_1Certificate.html" target="_self">Certificate</a></td><td class="desc">Loaded into memory X509 certificate </td></tr>
<tr id="row_6_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d92/classcrypto_1_1CryptoException.html" target="_self">CryptoException</a></td><td class="desc">Base exception </td></tr>
<tr id="row_6_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dd6/classcrypto_1_1DsaSigner.html" target="_self">DsaSigner</a></td><td class="desc">Generic signer for asymmetric cryptography </td></tr>
<tr id="row_6_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d8c/classcrypto_1_1DsaVerifier.html" target="_self">DsaVerifier</a></td><td class="desc">Generic verifier for asymmetric cryptography </td></tr>
<tr id="row_6_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d37/classcrypto_1_1HmacShaSigner.html" target="_self">HmacShaSigner</a></td><td class="desc">HMAC-SHA signer </td></tr>
<tr id="row_6_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/db8/classcrypto_1_1HmacShaVerifier.html" target="_self">HmacShaVerifier</a></td><td class="desc">HMAC-SHA verifier </td></tr>
<tr id="row_6_6_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d49/classcrypto_1_1KeyParseError.html" target="_self">KeyParseError</a></td><td class="desc">Signing key parse error </td></tr>
<tr id="row_6_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dac/classcrypto_1_1NamedAlgo.html" target="_self">NamedAlgo</a></td><td class="desc">Base class for a crypto algorithm implementation </td></tr>
<tr id="row_6_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/db8/classcrypto_1_1PrivateKey.html" target="_self">PrivateKey</a></td><td class="desc">Loaded into memory private key </td></tr>
<tr id="row_6_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d1f/classcrypto_1_1PublicKey.html" target="_self">PublicKey</a></td><td class="desc">Loaded into memory public key </td></tr>
<tr id="row_6_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d17/classcrypto_1_1Signer.html" target="_self">Signer</a></td><td class="desc">Base signer class </td></tr>
<tr id="row_6_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d35/classcrypto_1_1SignerNone.html" target="_self">SignerNone</a></td><td class="desc">"none" algorithm signer </td></tr>
<tr id="row_6_12_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/deb/classcrypto_1_1SignError.html" target="_self">SignError</a></td><td class="desc">Signature generation error </td></tr>
<tr id="row_6_13_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dc8/classcrypto_1_1VerificationError.html" target="_self">VerificationError</a></td><td class="desc">Signature verification error </td></tr>
<tr id="row_6_14_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d53/classcrypto_1_1Verifier.html" target="_self">Verifier</a></td><td class="desc">Base verifier class </td></tr>
<tr id="row_6_15_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d87/classcrypto_1_1VerifierNone.html" target="_self">VerifierNone</a></td><td class="desc">"none" algorithm verifier </td></tr>
<tr id="row_7_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_7_" class="arrow" onclick="toggleFolder('7_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="da/d81/namespacedecimal64.html" target="_self">decimal64</a></td><td class="desc">Fixed-point decimal data type and related functions </td></tr>
<tr id="row_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d90/classdecimal64_1_1CeilingRoundPolicy.html" target="_self">CeilingRoundPolicy</a></td><td class="desc">Round towards +infinity </td></tr>
<tr id="row_7_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dec/classdecimal64_1_1Decimal.html" target="_self">Decimal</a></td><td class="desc">Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money </td></tr>
<tr id="row_7_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dfa/classdecimal64_1_1DecimalError.html" target="_self">DecimalError</a></td><td class="desc">The base class for Decimal-related exceptions </td></tr>
<tr id="row_7_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d10/classdecimal64_1_1DefRoundPolicy.html" target="_self">DefRoundPolicy</a></td><td class="desc">Default rounding. Fast, rounds to nearest </td></tr>
<tr id="row_7_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da6/classdecimal64_1_1DivisionByZeroError.html" target="_self">DivisionByZeroError</a></td><td class="desc">Thrown on division by zero in <code><a class="el" href="df/dec/classdecimal64_1_1Decimal.html" title="Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money.">Decimal</a></code> arithmetic </td></tr>
<tr id="row_7_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d94/classdecimal64_1_1FloorRoundPolicy.html" target="_self">FloorRoundPolicy</a></td><td class="desc">Round towards -infinity </td></tr>
<tr id="row_7_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d1b/structdecimal64_1_1FormatOptions.html" target="_self">FormatOptions</a></td><td class="desc">Parameters for flexible decimal formatting </td></tr>
<tr id="row_7_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d25/classdecimal64_1_1HalfDownRoundPolicy.html" target="_self">HalfDownRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 towards zero </td></tr>
<tr id="row_7_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d00/classdecimal64_1_1HalfEvenRoundPolicy.html" target="_self">HalfEvenRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 towards number with even last digit </td></tr>
<tr id="row_7_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/de2/classdecimal64_1_1HalfUpRoundPolicy.html" target="_self">HalfUpRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 away from zero </td></tr>
<tr id="row_7_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/db9/classdecimal64_1_1OutOfBoundsError.html" target="_self">OutOfBoundsError</a></td><td class="desc">Thrown on overflow in <code><a class="el" href="df/dec/classdecimal64_1_1Decimal.html" title="Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money.">Decimal</a></code> arithmetic </td></tr>
<tr id="row_7_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d3e/classdecimal64_1_1ParseError.html" target="_self">ParseError</a></td><td class="desc">Thrown on all errors related to parsing <code><a class="el" href="df/dec/classdecimal64_1_1Decimal.html" title="Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money.">Decimal</a></code> from string </td></tr>
<tr id="row_7_12_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d4c/classdecimal64_1_1RoundDownRoundPolicy.html" target="_self">RoundDownRoundPolicy</a></td><td class="desc">Round towards zero. The fastest rounding </td></tr>
<tr id="row_7_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dc3/classdecimal64_1_1RoundUpRoundPolicy.html" target="_self">RoundUpRoundPolicy</a></td><td class="desc">Round away from zero </td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_8_" class="arrow" onclick="toggleFolder('8_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="da/d4a/namespacedist__lock.html" target="_self">dist_lock</a></td><td class="desc">Distributed locking </td></tr>
<tr id="row_8_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d9d/classdist__lock_1_1DistLockedTask.html" target="_self">DistLockedTask</a></td><td class="desc"></td></tr>
<tr id="row_8_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d24/classdist__lock_1_1DistLockedWorker.html" target="_self">DistLockedWorker</a></td><td class="desc"></td></tr>
<tr id="row_8_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d91/structdist__lock_1_1DistLockSettings.html" target="_self">DistLockSettings</a></td><td class="desc">Distributed lock settings </td></tr>
<tr id="row_8_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d8e/classdist__lock_1_1DistLockStrategyBase.html" target="_self">DistLockStrategyBase</a></td><td class="desc">Interface for distributed lock strategies </td></tr>
<tr id="row_8_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d6d/classdist__lock_1_1LockIsAcquiredByAnotherHostException.html" target="_self">LockIsAcquiredByAnotherHostException</a></td><td class="desc">Indicates that lock cannot be acquired because it's busy </td></tr>
<tr id="row_8_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/de5/structdist__lock_1_1Statistics.html" target="_self">Statistics</a></td><td class="desc"></td></tr>
<tr id="row_9_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_9_" class="arrow" onclick="toggleFolder('9_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d8/d72/namespacedump.html" target="_self">dump</a></td><td class="desc">Dumping of cache-like components </td></tr>
<tr id="row_9_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dac/structdump_1_1Config.html" target="_self">Config</a></td><td class="desc"></td></tr>
<tr id="row_9_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dcc/structdump_1_1ConfigPatch.html" target="_self">ConfigPatch</a></td><td class="desc"></td></tr>
<tr id="row_9_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d3a/classdump_1_1DumpableEntity.html" target="_self">DumpableEntity</a></td><td class="desc"></td></tr>
<tr id="row_9_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4c/classdump_1_1Dumper.html" target="_self">Dumper</a></td><td class="desc">Manages dumps of a cache-like component </td></tr>
<tr id="row_9_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d77/classdump_1_1EncryptedOperationsFactory.html" target="_self">EncryptedOperationsFactory</a></td><td class="desc"></td></tr>
<tr id="row_9_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d99/classdump_1_1EncryptedReader.html" target="_self">EncryptedReader</a></td><td class="desc"></td></tr>
<tr id="row_9_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d7b/classdump_1_1EncryptedWriter.html" target="_self">EncryptedWriter</a></td><td class="desc"></td></tr>
<tr id="row_9_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d09/classdump_1_1Error.html" target="_self">Error</a></td><td class="desc"></td></tr>
<tr id="row_9_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d04/classdump_1_1FileOperationsFactory.html" target="_self">FileOperationsFactory</a></td><td class="desc"></td></tr>
<tr id="row_9_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d7b/classdump_1_1FileReader.html" target="_self">FileReader</a></td><td class="desc">A handle to a dump file. File operations block the thread </td></tr>
<tr id="row_9_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d7a/classdump_1_1FileWriter.html" target="_self">FileWriter</a></td><td class="desc">A handle to a dump file. File operations block the thread </td></tr>
<tr id="row_9_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d4c/structdump_1_1IsDumpedAggregate.html" target="_self">IsDumpedAggregate</a></td><td class="desc"></td></tr>
<tr id="row_9_12_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d3d/classdump_1_1MockReader.html" target="_self">MockReader</a></td><td class="desc">A <code><a class="el" href="d2/d03/classdump_1_1Reader.html" title="A general interface for binary data input.">Reader</a></code> that reads from a string buffer (used in tests) </td></tr>
<tr id="row_9_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d9f/classdump_1_1MockWriter.html" target="_self">MockWriter</a></td><td class="desc">A <code><a class="el" href="df/d09/classdump_1_1Writer.html" title="A general interface for binary data output.">Writer</a></code> that appends to a string buffer (used in tests) </td></tr>
<tr id="row_9_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d98/classdump_1_1OperationsFactory.html" target="_self">OperationsFactory</a></td><td class="desc">An abstract Reader/Writer factory </td></tr>
<tr id="row_9_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d03/classdump_1_1Reader.html" target="_self">Reader</a></td><td class="desc">A general interface for binary data input </td></tr>
<tr id="row_9_16_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d52/structdump_1_1To.html" target="_self">To</a></td><td class="desc">A marker type used in ADL-found <code>Read</code> </td></tr>
<tr id="row_9_17_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d09/classdump_1_1Writer.html" target="_self">Writer</a></td><td class="desc">A general interface for binary data output </td></tr>
<tr id="row_10_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_10_" class="arrow" onclick="toggleFolder('10_')">►</span><span class="icona"><span class="icon">N</span></span><b>dynamic_config</b></td><td class="desc"></td></tr>
<tr id="row_10_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d08/classdynamic__config_1_1AdditionalKeysToken.html" target="_self">AdditionalKeysToken</a></td><td class="desc">Defines the scope where DynamicConfigClientUpdater requests additional configs </td></tr>
<tr id="row_10_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_10_1_" class="arrow" onclick="toggleFolder('10_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d61/classdynamic__config_1_1Client.html" target="_self">Client</a></td><td class="desc"><a class="el" href="d2/d61/classdynamic__config_1_1Client.html" title="Client for the configs service.">Client</a> for the configs service </td></tr>
<tr id="row_10_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/da4/structdynamic__config_1_1Client_1_1JsonReply.html" target="_self">JsonReply</a></td><td class="desc"></td></tr>
<tr id="row_10_1_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dc1/structdynamic__config_1_1Client_1_1Reply.html" target="_self">Reply</a></td><td class="desc"></td></tr>
<tr id="row_10_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/db0/structdynamic__config_1_1ClientConfig.html" target="_self">ClientConfig</a></td><td class="desc"></td></tr>
<tr id="row_10_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d0a/classdynamic__config_1_1DocsMap.html" target="_self">DocsMap</a></td><td class="desc"></td></tr>
<tr id="row_10_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d03/structdynamic__config_1_1Key.html" target="_self">Key</a></td><td class="desc">A config key is a unique identifier for a config variable </td></tr>
<tr id="row_10_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d89/classdynamic__config_1_1KeyValue.html" target="_self">KeyValue</a></td><td class="desc">A type-erased config key-value pair </td></tr>
<tr id="row_10_6_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d96/classdynamic__config_1_1Snapshot.html" target="_self">Snapshot</a></td><td class="desc">The storage for a snapshot of configs </td></tr>
<tr id="row_10_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d22/classdynamic__config_1_1Source.html" target="_self">Source</a></td><td class="desc">A client for easy dynamic config fetching in components </td></tr>
<tr id="row_10_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dec/classdynamic__config_1_1StorageMock.html" target="_self">StorageMock</a></td><td class="desc">Backing storage for <code><a class="el" href="d1/d22/classdynamic__config_1_1Source.html" title="A client for easy dynamic config fetching in components.">dynamic_config::Source</a></code> in tests and benchmarks </td></tr>
<tr id="row_10_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/df1/classdynamic__config_1_1Value.html" target="_self">Value</a></td><td class="desc"></td></tr>
<tr id="row_10_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d47/classdynamic__config_1_1ValueDict.html" target="_self">ValueDict</a></td><td class="desc"></td></tr>
<tr id="row_10_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/df5/classdynamic__config_1_1VariableSnapshotPtr.html" target="_self">VariableSnapshotPtr</a></td><td class="desc"></td></tr>
<tr id="row_11_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_11_" class="arrow" onclick="toggleFolder('11_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dc/d3f/namespaceengine.html" target="_self">engine</a></td><td class="desc">Asynchronous engine primitives </td></tr>
<tr id="row_11_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_11_0_" class="arrow" onclick="toggleFolder('11_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dd/daf/namespaceengine_1_1io.html" target="_self">io</a></td><td class="desc">Low-level asynchronous I/O interfaces </td></tr>
<tr id="row_11_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d6f/classengine_1_1io_1_1AddrException.html" target="_self">AddrException</a></td><td class="desc"><a class="el" href="dd/dcf/classengine_1_1io_1_1Socket.html" title="Socket representation.">Socket</a> address-related exceptions </td></tr>
<tr id="row_11_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dfb/classengine_1_1io_1_1BufferedReader.html" target="_self">BufferedReader</a></td><td class="desc">Wrapper for buffered input </td></tr>
<tr id="row_11_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/de3/classengine_1_1io_1_1IoCancelled.html" target="_self">IoCancelled</a></td><td class="desc"></td></tr>
<tr id="row_11_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dd1/structengine_1_1io_1_1IoData.html" target="_self">IoData</a></td><td class="desc"><a class="el" href="d3/dd1/structengine_1_1io_1_1IoData.html" title="IoData for vector send.">IoData</a> for vector send </td></tr>
<tr id="row_11_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d81/classengine_1_1io_1_1IoException.html" target="_self">IoException</a></td><td class="desc">Generic I/O error </td></tr>
<tr id="row_11_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/de4/classengine_1_1io_1_1IoInterrupted.html" target="_self">IoInterrupted</a></td><td class="desc">I/O interruption </td></tr>
<tr id="row_11_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d90/classengine_1_1io_1_1IoSystemError.html" target="_self">IoSystemError</a></td><td class="desc">Operating system I/O error </td></tr>
<tr id="row_11_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d2d/classengine_1_1io_1_1IoTimeout.html" target="_self">IoTimeout</a></td><td class="desc">I/O timeout </td></tr>
<tr id="row_11_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dc8/classengine_1_1io_1_1Pipe.html" target="_self">Pipe</a></td><td class="desc">Unidirectional pipe representation </td></tr>
<tr id="row_11_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d43/classengine_1_1io_1_1PipeReader.html" target="_self">PipeReader</a></td><td class="desc">Reading end of an unidirectional pipe </td></tr>
<tr id="row_11_0_10_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d7b/classengine_1_1io_1_1PipeWriter.html" target="_self">PipeWriter</a></td><td class="desc">Writing end of an unidirectional pipe </td></tr>
<tr id="row_11_0_11_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d1b/classengine_1_1io_1_1ReadableBase.html" target="_self">ReadableBase</a></td><td class="desc"></td></tr>
<tr id="row_11_0_12_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d1e/classengine_1_1io_1_1RwBase.html" target="_self">RwBase</a></td><td class="desc"></td></tr>
<tr id="row_11_0_13_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dc0/classengine_1_1io_1_1Sockaddr.html" target="_self">Sockaddr</a></td><td class="desc">Native socket address wrapper </td></tr>
<tr id="row_11_0_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_11_0_14_" class="arrow" onclick="toggleFolder('11_0_14_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dcf/classengine_1_1io_1_1Socket.html" target="_self">Socket</a></td><td class="desc"><a class="el" href="dd/dcf/classengine_1_1io_1_1Socket.html" title="Socket representation.">Socket</a> representation </td></tr>
<tr id="row_11_0_14_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d72/structengine_1_1io_1_1Socket_1_1RecvFromResult.html" target="_self">RecvFromResult</a></td><td class="desc"></td></tr>
<tr id="row_11_0_15_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d4c/classengine_1_1io_1_1TerminatorNotFoundException.html" target="_self">TerminatorNotFoundException</a></td><td class="desc"></td></tr>
<tr id="row_11_0_16_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d1d/classengine_1_1io_1_1TlsException.html" target="_self">TlsException</a></td><td class="desc">TLS I/O error </td></tr>
<tr id="row_11_0_17_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d00/classengine_1_1io_1_1TlsWrapper.html" target="_self">TlsWrapper</a></td><td class="desc"></td></tr>
<tr id="row_11_0_18_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d42/classengine_1_1io_1_1WritableBase.html" target="_self">WritableBase</a></td><td class="desc"></td></tr>
<tr id="row_11_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_11_1_" class="arrow" onclick="toggleFolder('11_1_')">►</span><span class="icona"><span class="icon">N</span></span><b>subprocess</b></td><td class="desc"></td></tr>
<tr id="row_11_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d5b/classengine_1_1subprocess_1_1ChildProcess.html" target="_self">ChildProcess</a></td><td class="desc"></td></tr>
<tr id="row_11_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/df1/classengine_1_1subprocess_1_1ChildProcessStatus.html" target="_self">ChildProcessStatus</a></td><td class="desc">Status of finished subprocess </td></tr>
<tr id="row_11_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dc3/classengine_1_1subprocess_1_1ChildProcessStatusException.html" target="_self">ChildProcessStatusException</a></td><td class="desc"></td></tr>
<tr id="row_11_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dea/classengine_1_1subprocess_1_1EnvironmentVariables.html" target="_self">EnvironmentVariables</a></td><td class="desc"></td></tr>
<tr id="row_11_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/da1/classengine_1_1subprocess_1_1EnvironmentVariablesUpdate.html" target="_self">EnvironmentVariablesUpdate</a></td><td class="desc"></td></tr>
<tr id="row_11_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d4f/classengine_1_1subprocess_1_1ProcessStarter.html" target="_self">ProcessStarter</a></td><td class="desc">Creates a new OS subprocess and executes a command in it </td></tr>
<tr id="row_11_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5d/classengine_1_1ConditionVariable.html" target="_self">ConditionVariable</a></td><td class="desc">Std::condition_variable replacement for asynchronous tasks </td></tr>
<tr id="row_11_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d6a/classengine_1_1Deadline.html" target="_self">Deadline</a></td><td class="desc">Internal representation of a deadline time point </td></tr>
<tr id="row_11_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d67/classengine_1_1Future.html" target="_self">Future</a></td><td class="desc">Std::future replacement for asynchronous tasks that works in pair with <a class="el" href="d9/d2e/classengine_1_1Promise.html" title="std::promise replacement for asynchronous tasks that works in pair with engine::Future">engine::Promise</a> </td></tr>
<tr id="row_11_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/da4/classengine_1_1Mutex.html" target="_self">Mutex</a></td><td class="desc">Std::mutex replacement for asynchronous tasks </td></tr>
<tr id="row_11_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d2e/classengine_1_1Promise.html" target="_self">Promise</a></td><td class="desc">Std::promise replacement for asynchronous tasks that works in pair with <a class="el" href="d8/d67/classengine_1_1Future.html" title="std::future replacement for asynchronous tasks that works in pair with engine::Promise">engine::Future</a> </td></tr>
<tr id="row_11_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/df2/classengine_1_1Promise_3_01void_01_4.html" target="_self">Promise< void ></a></td><td class="desc"></td></tr>
<tr id="row_11_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d16/classengine_1_1Semaphore.html" target="_self">Semaphore</a></td><td class="desc">Class that allows up to <code>max_simultaneous_locks</code> concurrent accesses to the critical section </td></tr>
<tr id="row_11_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/da6/classengine_1_1SemaphoreLock.html" target="_self">SemaphoreLock</a></td><td class="desc">A replacement for std::shared_lock that accepts <a class="el" href="de/d6a/classengine_1_1Deadline.html" title="Internal representation of a deadline time point.">Deadline</a> arguments </td></tr>
<tr id="row_11_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d70/classengine_1_1SharedMutex.html" target="_self">SharedMutex</a></td><td class="desc">Std::shared_mutex replacement for asynchronous tasks </td></tr>
<tr id="row_11_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d97/classengine_1_1SharedTaskWithResult.html" target="_self">SharedTaskWithResult</a></td><td class="desc"></td></tr>
<tr id="row_11_12_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_11_12_" class="arrow" onclick="toggleFolder('11_12_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d87/classengine_1_1SingleConsumerEvent.html" target="_self">SingleConsumerEvent</a></td><td class="desc">A multiple-producers, single-consumer event </td></tr>
<tr id="row_11_12_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dcf/structengine_1_1SingleConsumerEvent_1_1NoAutoReset.html" target="_self">NoAutoReset</a></td><td class="desc"></td></tr>
<tr id="row_11_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d64/classengine_1_1SingleThreadedTaskProcessorsPool.html" target="_self">SingleThreadedTaskProcessorsPool</a></td><td class="desc"></td></tr>
<tr id="row_11_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dde/classengine_1_1SingleUseEvent.html" target="_self">SingleUseEvent</a></td><td class="desc">A single-producer, single-consumer event </td></tr>
<tr id="row_11_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d7c/classengine_1_1Task.html" target="_self">Task</a></td><td class="desc">Asynchronous task </td></tr>
<tr id="row_11_16_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d40/classengine_1_1TaskCancellationBlocker.html" target="_self">TaskCancellationBlocker</a></td><td class="desc"></td></tr>
<tr id="row_11_17_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dc1/classengine_1_1TaskCancelledException.html" target="_self">TaskCancelledException</a></td><td class="desc">Thrown if a <code><a class="el" href="db/d80/classengine_1_1TaskWithResult.html">TaskWithResult</a></code>, for which we were waiting, got cancelled </td></tr>
<tr id="row_11_18_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d8b/classengine_1_1TaskInheritedVariable.html" target="_self">TaskInheritedVariable</a></td><td class="desc"><a class="el" href="d1/d8b/classengine_1_1TaskInheritedVariable.html" title="TaskInheritedVariable is a per-coroutine variable of arbitrary type.">TaskInheritedVariable</a> is a per-coroutine variable of arbitrary type </td></tr>
<tr id="row_11_19_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d40/classengine_1_1TaskLocalVariable.html" target="_self">TaskLocalVariable</a></td><td class="desc"><a class="el" href="d0/d40/classengine_1_1TaskLocalVariable.html" title="TaskLocalVariable is a per-coroutine variable of arbitrary type.">TaskLocalVariable</a> is a per-coroutine variable of arbitrary type </td></tr>
<tr id="row_11_20_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dde/structengine_1_1TaskProcessorPoolsConfig.html" target="_self">TaskProcessorPoolsConfig</a></td><td class="desc">A lightweight TaskProcessor config for <a class="el" href="dc/d3f/namespaceengine.html#a5b808a81d43d062275ca56dc09980277" title="Runs a payload in a temporary coroutine engine instance.">engine::RunStandalone</a> </td></tr>
<tr id="row_11_21_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d80/classengine_1_1TaskWithResult.html" target="_self">TaskWithResult</a></td><td class="desc"></td></tr>
<tr id="row_11_22_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d5a/classengine_1_1UnreachableSemaphoreLockError.html" target="_self">UnreachableSemaphoreLockError</a></td><td class="desc"></td></tr>
<tr id="row_11_23_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dae/classengine_1_1WaitInterruptedException.html" target="_self">WaitInterruptedException</a></td><td class="desc"></td></tr>
<tr id="row_12_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_12_" class="arrow" onclick="toggleFolder('12_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d6/dca/namespaceerror__injection.html" target="_self">error_injection</a></td><td class="desc">Artificial errors injection framework </td></tr>
<tr id="row_12_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dae/classerror__injection_1_1Hook.html" target="_self">Hook</a></td><td class="desc"></td></tr>
<tr id="row_12_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d85/structerror__injection_1_1Settings.html" target="_self">Settings</a></td><td class="desc"></td></tr>
<tr id="row_13_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_13_" class="arrow" onclick="toggleFolder('13_')">►</span><span class="icona"><span class="icon">N</span></span><b>fmt</b></td><td class="desc"></td></tr>
<tr id="row_13_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d03/structfmt_1_1formatter_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">formatter< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_13_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/df7/structfmt_1_1formatter_3_01T_00_01Char_00_01std_1_1enable__if__t_3_1_1utils_1_1IsStrongTypedef_3_01T_01_4_02_03_4_01_4.html" target="_self">formatter< T, Char, std::enable_if_t<::utils::IsStrongTypedef< T >{}> ></a></td><td class="desc"></td></tr>
<tr id="row_13_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dba/classfmt_1_1formatter_3_1_1decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_00_01Char_01_4.html" target="_self">formatter<::decimal64::Decimal< Prec, RoundPolicy >, Char ></a></td><td class="desc">Fmt support </td></tr>
<tr id="row_13_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d5d/structfmt_1_1formatter_3_1_1engine_1_1io_1_1Sockaddr_01_4.html" target="_self">formatter<::engine::io::Sockaddr ></a></td><td class="desc">Socket address fmt formatter </td></tr>
<tr id="row_13_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d07/structfmt_1_1formatter_3_1_1formats_1_1json_1_1Value_01_4.html" target="_self">formatter<::formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_13_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/def/structfmt_1_1formatter_3_1_1server_1_1http_1_1HttpMethod_01_4.html" target="_self">formatter<::server::http::HttpMethod ></a></td><td class="desc"></td></tr>
<tr id="row_13_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d66/structfmt_1_1formatter_3_1_1server_1_1http_1_1HttpStatus_01_4.html" target="_self">formatter<::server::http::HttpStatus ></a></td><td class="desc"></td></tr>
<tr id="row_13_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/ddf/structfmt_1_1formatter_3_1_1utils_1_1datetime_1_1TimeOfDay_3_01Duration_01_4_01_4.html" target="_self">formatter<::utils::datetime::TimeOfDay< Duration > ></a></td><td class="desc"></td></tr>
<tr id="row_14_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_14_" class="arrow" onclick="toggleFolder('14_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d8/d5b/namespaceformats.html" target="_self">formats</a></td><td class="desc">Value formats representation, parsing and serialization </td></tr>
<tr id="row_14_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_0_" class="arrow" onclick="toggleFolder('14_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dd/dee/namespaceformats_1_1bson.html" target="_self">bson</a></td><td class="desc">BSON support </td></tr>
<tr id="row_14_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d18/classformats_1_1bson_1_1Binary.html" target="_self">Binary</a></td><td class="desc">BSON <a class="el" href="de/d18/classformats_1_1bson_1_1Binary.html" title="BSON Binary.">Binary</a> </td></tr>
<tr id="row_14_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d9e/classformats_1_1bson_1_1BsonException.html" target="_self">BsonException</a></td><td class="desc">Generic BSON-related exception </td></tr>
<tr id="row_14_0_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dba/classformats_1_1bson_1_1BsonString.html" target="_self">BsonString</a></td><td class="desc"></td></tr>
<tr id="row_14_0_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de6/classformats_1_1bson_1_1ConversionException.html" target="_self">ConversionException</a></td><td class="desc">Conversion error </td></tr>
<tr id="row_14_0_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dc1/classformats_1_1bson_1_1Decimal128.html" target="_self">Decimal128</a></td><td class="desc">BSON <a class="el" href="dd/dc1/classformats_1_1bson_1_1Decimal128.html" title="BSON Decimal128.">Decimal128</a> </td></tr>
<tr id="row_14_0_5_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d49/classformats_1_1bson_1_1Document.html" target="_self">Document</a></td><td class="desc">BSON document </td></tr>
<tr id="row_14_0_6_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/deb/classformats_1_1bson_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"><a class="el" href="d1/deb/classformats_1_1bson_1_1Iterator.html" title="Iterator for BSON values.">Iterator</a> for BSON values </td></tr>
<tr id="row_14_0_7_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/de8/classformats_1_1bson_1_1JsonString.html" target="_self">JsonString</a></td><td class="desc"></td></tr>
<tr id="row_14_0_8_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dfd/classformats_1_1bson_1_1MaxKey.html" target="_self">MaxKey</a></td><td class="desc">BSON <a class="el" href="dd/dfd/classformats_1_1bson_1_1MaxKey.html" title="BSON MaxKey.">MaxKey</a> </td></tr>
<tr id="row_14_0_9_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d07/classformats_1_1bson_1_1MemberMissingException.html" target="_self">MemberMissingException</a></td><td class="desc">BSON nonexisting member access error </td></tr>
<tr id="row_14_0_10_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/da0/classformats_1_1bson_1_1MinKey.html" target="_self">MinKey</a></td><td class="desc">BSON <a class="el" href="d3/da0/classformats_1_1bson_1_1MinKey.html" title="BSON MinKey.">MinKey</a> </td></tr>
<tr id="row_14_0_11_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d41/classformats_1_1bson_1_1Oid.html" target="_self">Oid</a></td><td class="desc">BSON ObjectId </td></tr>
<tr id="row_14_0_12_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dd1/classformats_1_1bson_1_1OutOfBoundsException.html" target="_self">OutOfBoundsException</a></td><td class="desc">BSON array indexing error </td></tr>
<tr id="row_14_0_13_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d86/classformats_1_1bson_1_1ParseException.html" target="_self">ParseException</a></td><td class="desc">BSON parsing error </td></tr>
<tr id="row_14_0_14_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d82/classformats_1_1bson_1_1Timestamp.html" target="_self">Timestamp</a></td><td class="desc">BSON <a class="el" href="d3/d82/classformats_1_1bson_1_1Timestamp.html" title="BSON Timestamp.">Timestamp</a> </td></tr>
<tr id="row_14_0_15_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d94/classformats_1_1bson_1_1TypeMismatchException.html" target="_self">TypeMismatchException</a></td><td class="desc">BSON types mismatch error </td></tr>
<tr id="row_14_0_16_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_0_16_" class="arrow" onclick="toggleFolder('14_0_16_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d67/classformats_1_1bson_1_1Value.html" target="_self">Value</a></td><td class="desc">Non-mutable BSON value representation </td></tr>
<tr id="row_14_0_16_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d1a/structformats_1_1bson_1_1Value_1_1DefaultConstructed.html" target="_self">DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_14_0_17_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d70/classformats_1_1bson_1_1ValueBuilder.html" target="_self">ValueBuilder</a></td><td class="desc">Builder for BSON </td></tr>
<tr id="row_14_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_1_" class="arrow" onclick="toggleFolder('14_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d4/d6e/namespaceformats_1_1common.html" target="_self">common</a></td><td class="desc">Common utilities for all the formats </td></tr>
<tr id="row_14_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_1_0_" class="arrow" onclick="toggleFolder('14_1_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d37/classformats_1_1common_1_1ItemsWrapper.html" target="_self">ItemsWrapper</a></td><td class="desc"></td></tr>
<tr id="row_14_1_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_14_1_0_0_" class="arrow" onclick="toggleFolder('14_1_0_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d78/classformats_1_1common_1_1ItemsWrapper_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"></td></tr>
<tr id="row_14_1_0_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d8e/structformats_1_1common_1_1ItemsWrapper_1_1Iterator_1_1ItValue.html" target="_self">ItValue</a></td><td class="desc"></td></tr>
<tr id="row_14_1_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d0e/classformats_1_1common_1_1Path.html" target="_self">Path</a></td><td class="desc">Document/array element path storage </td></tr>
<tr id="row_14_1_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d3e/classformats_1_1common_1_1TransferTag.html" target="_self">TransferTag</a></td><td class="desc">This tag class is used to move a <code>ValueBuilder</code> object without copying </td></tr>
<tr id="row_14_2_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_2_" class="arrow" onclick="toggleFolder('14_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="de/da1/namespaceformats_1_1json.html" target="_self">json</a></td><td class="desc">JSON support </td></tr>
<tr id="row_14_2_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_2_0_" class="arrow" onclick="toggleFolder('14_2_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d0/dc4/namespaceformats_1_1json_1_1parser.html" target="_self">parser</a></td><td class="desc">SAX parser tools </td></tr>
<tr id="row_14_2_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d6a/classformats_1_1json_1_1parser_1_1ArrayParser.html" target="_self">ArrayParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d7c/classformats_1_1json_1_1parser_1_1BaseError.html" target="_self">BaseError</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_2_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d76/classformats_1_1json_1_1parser_1_1BaseParser.html" target="_self">BaseParser</a></td><td class="desc">Base class for SAX parser </td></tr>
<tr id="row_14_2_0_3_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dd1/classformats_1_1json_1_1parser_1_1BaseValidator.html" target="_self">BaseValidator</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_4_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d4a/classformats_1_1json_1_1parser_1_1BoolParser.html" target="_self">BoolParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_5_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d7e/classformats_1_1json_1_1parser_1_1EmptyValidator.html" target="_self">EmptyValidator</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_6_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d0f/classformats_1_1json_1_1parser_1_1IntegralParser.html" target="_self">IntegralParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_7_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d67/classformats_1_1json_1_1parser_1_1IntegralParser_3_01std_1_1int32__t_01_4.html" target="_self">IntegralParser< std::int32_t ></a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_8_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dd8/classformats_1_1json_1_1parser_1_1IntegralParser_3_01std_1_1int64__t_01_4.html" target="_self">IntegralParser< std::int64_t ></a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_9_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da4/classformats_1_1json_1_1parser_1_1InternalParseError.html" target="_self">InternalParseError</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_10_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d70/classformats_1_1json_1_1parser_1_1JsonValueParser.html" target="_self">JsonValueParser</a></td><td class="desc">SAX-parser for <a class="el" href="de/d91/classformats_1_1json_1_1Value.html" title="Non-mutable JSON value representation.">formats::json::Value</a> </td></tr>
<tr id="row_14_2_0_11_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/db3/classformats_1_1json_1_1parser_1_1MapParser.html" target="_self">MapParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_12_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d34/classformats_1_1json_1_1parser_1_1NumberParser.html" target="_self">NumberParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_13_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d03/classformats_1_1json_1_1parser_1_1ParseError.html" target="_self">ParseError</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_14_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d7b/classformats_1_1json_1_1parser_1_1ParserHandler.html" target="_self">ParserHandler</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_15_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d49/classformats_1_1json_1_1parser_1_1ParserState.html" target="_self">ParserState</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_16_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dd7/classformats_1_1json_1_1parser_1_1StringParser.html" target="_self">StringParser</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_17_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da2/classformats_1_1json_1_1parser_1_1Subscriber.html" target="_self">Subscriber</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_18_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dfd/classformats_1_1json_1_1parser_1_1SubscriberSink.html" target="_self">SubscriberSink</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_19_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1a/classformats_1_1json_1_1parser_1_1SubscriberSinkOptional.html" target="_self">SubscriberSinkOptional</a></td><td class="desc"></td></tr>
<tr id="row_14_2_0_20_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/da9/classformats_1_1json_1_1parser_1_1TypedParser.html" target="_self">TypedParser</a></td><td class="desc">Main base class for SAX parsers </td></tr>
<tr id="row_14_2_0_21_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d65/classformats_1_1json_1_1parser_1_1Validator.html" target="_self">Validator</a></td><td class="desc"></td></tr>
<tr id="row_14_2_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1f/classformats_1_1json_1_1BadStreamException.html" target="_self">BadStreamException</a></td><td class="desc"></td></tr>
<tr id="row_14_2_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d49/classformats_1_1json_1_1ConversionException.html" target="_self">ConversionException</a></td><td class="desc">Conversion error </td></tr>
<tr id="row_14_2_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d84/classformats_1_1json_1_1Exception.html" target="_self">Exception</a></td><td class="desc"></td></tr>
<tr id="row_14_2_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dcc/classformats_1_1json_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"><a class="el" href="d1/dcc/classformats_1_1json_1_1Iterator.html" title="Iterator for formats::json::Value">Iterator</a> for <code><a class="el" href="de/d91/classformats_1_1json_1_1Value.html" title="Non-mutable JSON value representation.">formats::json::Value</a></code> </td></tr>
<tr id="row_14_2_5_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/da8/classformats_1_1json_1_1MemberMissingException.html" target="_self">MemberMissingException</a></td><td class="desc"></td></tr>
<tr id="row_14_2_6_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d4c/classformats_1_1json_1_1OutOfBoundsException.html" target="_self">OutOfBoundsException</a></td><td class="desc"></td></tr>
<tr id="row_14_2_7_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dff/classformats_1_1json_1_1ParseException.html" target="_self">ParseException</a></td><td class="desc"></td></tr>
<tr id="row_14_2_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_2_8_" class="arrow" onclick="toggleFolder('14_2_8_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d55/classformats_1_1json_1_1StringBuilder.html" target="_self">StringBuilder</a></td><td class="desc">SAX like builder of JSON string. Use with extreme caution and only in performance critical part of your code </td></tr>
<tr id="row_14_2_8_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/da7/classformats_1_1json_1_1StringBuilder_1_1ArrayGuard.html" target="_self">ArrayGuard</a></td><td class="desc"></td></tr>
<tr id="row_14_2_8_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d9e/classformats_1_1json_1_1StringBuilder_1_1ObjectGuard.html" target="_self">ObjectGuard</a></td><td class="desc"></td></tr>
<tr id="row_14_2_9_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/da0/classformats_1_1json_1_1TypeMismatchException.html" target="_self">TypeMismatchException</a></td><td class="desc"></td></tr>
<tr id="row_14_2_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_2_10_" class="arrow" onclick="toggleFolder('14_2_10_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d91/classformats_1_1json_1_1Value.html" target="_self">Value</a></td><td class="desc">Non-mutable JSON value representation </td></tr>
<tr id="row_14_2_10_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de1/structformats_1_1json_1_1Value_1_1DefaultConstructed.html" target="_self">DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_14_2_10_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d13/structformats_1_1json_1_1Value_1_1IterTraits.html" target="_self">IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_14_2_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_2_11_" class="arrow" onclick="toggleFolder('14_2_11_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/daa/classformats_1_1json_1_1ValueBuilder.html" target="_self">ValueBuilder</a></td><td class="desc">Builder for JSON </td></tr>
<tr id="row_14_2_11_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d37/structformats_1_1json_1_1ValueBuilder_1_1IterTraits.html" target="_self">IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_14_3_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_3_" class="arrow" onclick="toggleFolder('14_3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d9/d14/namespaceformats_1_1parse.html" target="_self">parse</a></td><td class="desc">Generic parsers and converters </td></tr>
<tr id="row_14_3_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dd1/structformats_1_1parse_1_1To.html" target="_self">To</a></td><td class="desc"></td></tr>
<tr id="row_14_4_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_4_" class="arrow" onclick="toggleFolder('14_4_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d8/d69/namespaceformats_1_1serialize.html" target="_self">serialize</a></td><td class="desc">Common serializers </td></tr>
<tr id="row_14_4_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/db3/structformats_1_1serialize_1_1SaxStream.html" target="_self">SaxStream</a></td><td class="desc"></td></tr>
<tr id="row_14_4_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d48/structformats_1_1serialize_1_1To.html" target="_self">To</a></td><td class="desc"></td></tr>
<tr id="row_14_5_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_14_5_" class="arrow" onclick="toggleFolder('14_5_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d7/d72/namespaceformats_1_1yaml.html" target="_self">yaml</a></td><td class="desc">YAML support </td></tr>
<tr id="row_14_5_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d15/classformats_1_1yaml_1_1BadStreamException.html" target="_self">BadStreamException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d9a/classformats_1_1yaml_1_1Exception.html" target="_self">Exception</a></td><td class="desc"></td></tr>
<tr id="row_14_5_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d08/classformats_1_1yaml_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"><a class="el" href="de/d08/classformats_1_1yaml_1_1Iterator.html" title="Iterator for formats::yaml::Value">Iterator</a> for <code><a class="el" href="da/dc1/classformats_1_1yaml_1_1Value.html" title="Non-mutable YAML value representation.">formats::yaml::Value</a></code> </td></tr>
<tr id="row_14_5_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dcb/classformats_1_1yaml_1_1MemberMissingException.html" target="_self">MemberMissingException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d0b/classformats_1_1yaml_1_1OutOfBoundsException.html" target="_self">OutOfBoundsException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_5_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d8f/classformats_1_1yaml_1_1ParseException.html" target="_self">ParseException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_6_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d64/classformats_1_1yaml_1_1PathPrefixException.html" target="_self">PathPrefixException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_7_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/df6/classformats_1_1yaml_1_1TypeMismatchException.html" target="_self">TypeMismatchException</a></td><td class="desc"></td></tr>
<tr id="row_14_5_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_5_8_" class="arrow" onclick="toggleFolder('14_5_8_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dc1/classformats_1_1yaml_1_1Value.html" target="_self">Value</a></td><td class="desc">Non-mutable YAML value representation </td></tr>
<tr id="row_14_5_8_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dba/structformats_1_1yaml_1_1Value_1_1DefaultConstructed.html" target="_self">DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_14_5_8_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d57/structformats_1_1yaml_1_1Value_1_1IterTraits.html" target="_self">IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_14_5_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_14_5_9_" class="arrow" onclick="toggleFolder('14_5_9_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de3/classformats_1_1yaml_1_1ValueBuilder.html" target="_self">ValueBuilder</a></td><td class="desc">Builder for YAML </td></tr>
<tr id="row_14_5_9_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dc9/structformats_1_1yaml_1_1ValueBuilder_1_1IterTraits.html" target="_self">IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_15_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_15_" class="arrow" onclick="toggleFolder('15_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d5/d8f/namespacefs.html" target="_self">fs</a></td><td class="desc">Filesystem support </td></tr>
<tr id="row_15_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_15_0_" class="arrow" onclick="toggleFolder('15_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dc/dcb/namespacefs_1_1blocking.html" target="_self">blocking</a></td><td class="desc">Blocking function and classes to work with filesystem </td></tr>
<tr id="row_15_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/da0/classfs_1_1blocking_1_1CFile.html" target="_self">CFile</a></td><td class="desc">A <code>std::FILE*</code> wrapper </td></tr>
<tr id="row_15_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d5b/classfs_1_1blocking_1_1FileDescriptor.html" target="_self">FileDescriptor</a></td><td class="desc">A file descriptor wrapper </td></tr>
<tr id="row_15_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dbc/classfs_1_1blocking_1_1TempDirectory.html" target="_self">TempDirectory</a></td><td class="desc">A unique directory for temporary files. The directory is deleted when the <code><a class="el" href="d6/dbc/classfs_1_1blocking_1_1TempDirectory.html" title="A unique directory for temporary files. The directory is deleted when the TempDirectory is destroyed.">TempDirectory</a></code> is destroyed </td></tr>
<tr id="row_15_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/ddb/classfs_1_1blocking_1_1TempFile.html" target="_self">TempFile</a></td><td class="desc">A unique temporary file. The file is deleted when the <code><a class="el" href="d7/ddb/classfs_1_1blocking_1_1TempFile.html" title="A unique temporary file. The file is deleted when the TempFile object is destroyed.">TempFile</a></code> object is destroyed </td></tr>
<tr id="row_15_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de7/structfs_1_1FileInfoWithData.html" target="_self">FileInfoWithData</a></td><td class="desc">Struct file with load data </td></tr>
<tr id="row_15_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d47/classfs_1_1FsCacheClient.html" target="_self">FsCacheClient</a></td><td class="desc">Class client for storing files in memory Usually retrieved from <code><a class="el" href="da/dd3/classcomponents_1_1FsCache.html" title="Component for storing files in memory.">components::FsCache</a></code> </td></tr>
<tr id="row_16_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_16_" class="arrow" onclick="toggleFolder('16_')">►</span><span class="icona"><span class="icon">N</span></span><b>grpc</b></td><td class="desc"></td></tr>
<tr id="row_16_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d2e/classgrpc_1_1TimePoint_3_1_1engine_1_1Deadline_01_4.html" target="_self">TimePoint<::engine::Deadline ></a></td><td class="desc"></td></tr>
<tr id="row_17_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_17_" class="arrow" onclick="toggleFolder('17_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d3/d69/namespacehttp.html" target="_self">http</a></td><td class="desc">HTTP helpers </td></tr>
<tr id="row_17_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da0/classhttp_1_1ContentType.html" target="_self">ContentType</a></td><td class="desc">Content-Type representation </td></tr>
<tr id="row_17_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d33/classhttp_1_1ContentTypeHash.html" target="_self">ContentTypeHash</a></td><td class="desc"></td></tr>
<tr id="row_17_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dc6/classhttp_1_1MalformedContentType.html" target="_self">MalformedContentType</a></td><td class="desc">Content-Type parsing error </td></tr>
<tr id="row_18_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_18_" class="arrow" onclick="toggleFolder('18_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dd/d46/namespacelogging.html" target="_self">logging</a></td><td class="desc">Logging macro and utilities </td></tr>
<tr id="row_18_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_18_0_" class="arrow" onclick="toggleFolder('18_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="de/d5d/namespacelogging_1_1stacktrace__cache.html" target="_self">stacktrace_cache</a></td><td class="desc">Contains functions that cache stacktrace results </td></tr>
<tr id="row_18_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d06/classlogging_1_1stacktrace__cache_1_1StacktraceGuard.html" target="_self">StacktraceGuard</a></td><td class="desc"></td></tr>
<tr id="row_18_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/de6/structlogging_1_1Hex.html" target="_self">Hex</a></td><td class="desc">Formats value in a hex mode with the fixed length representation </td></tr>
<tr id="row_18_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d58/structlogging_1_1HexShort.html" target="_self">HexShort</a></td><td class="desc"></td></tr>
<tr id="row_18_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/df8/classlogging_1_1LogExtra.html" target="_self">LogExtra</a></td><td class="desc">Extra tskv fields storage </td></tr>
<tr id="row_18_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d22/classlogging_1_1LogHelper.html" target="_self">LogHelper</a></td><td class="desc"></td></tr>
<tr id="row_18_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d43/structlogging_1_1Quoted.html" target="_self">Quoted</a></td><td class="desc">Formats a string as quoted, escaping the '\' and '"' symbols </td></tr>
<tr id="row_19_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_19_" class="arrow" onclick="toggleFolder('19_')">►</span><span class="icona"><span class="icon">N</span></span><b>meta</b></td><td class="desc"></td></tr>
<tr id="row_19_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/da1/structmeta_1_1NotDetected.html" target="_self">NotDetected</a></td><td class="desc">Detection idiom </td></tr>
<tr id="row_20_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_20_" class="arrow" onclick="toggleFolder('20_')">►</span><span class="icona"><span class="icon">N</span></span><b>moodycamel</b></td><td class="desc"></td></tr>
<tr id="row_20_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dc8/classmoodycamel_1_1ConcurrentQueue.html" target="_self">ConcurrentQueue</a></td><td class="desc"></td></tr>
<tr id="row_21_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_21_" class="arrow" onclick="toggleFolder('21_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d5/d79/namespaceos__signals.html" target="_self">os_signals</a></td><td class="desc">Components and functions to work with OS signals </td></tr>
<tr id="row_21_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d6c/classos__signals_1_1Processor.html" target="_self">Processor</a></td><td class="desc">A manager that allows to subscribe to OS signals, example: SIGUSR1, SIGUSR2 </td></tr>
<tr id="row_21_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d4a/classos__signals_1_1ProcessorComponent.html" target="_self">ProcessorComponent</a></td><td class="desc">A storage for <a class="el" href="d1/d6c/classos__signals_1_1Processor.html" title="A manager that allows to subscribe to OS signals, example: SIGUSR1, SIGUSR2.">Processor</a> listeners signals </td></tr>
<tr id="row_21_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d87/classos__signals_1_1ProcessorMock.html" target="_self">ProcessorMock</a></td><td class="desc">Provides <a class="el" href="d1/d6c/classos__signals_1_1Processor.html" title="A manager that allows to subscribe to OS signals, example: SIGUSR1, SIGUSR2.">Processor</a> for use in tests </td></tr>
<tr id="row_22_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_22_" class="arrow" onclick="toggleFolder('22_')">►</span><span class="icona"><span class="icon">N</span></span><b>pytest_userver</b></td><td class="desc"></td></tr>
<tr id="row_22_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_22_0_" class="arrow" onclick="toggleFolder('22_0_')">►</span><span class="icona"><span class="icon">N</span></span><b>client</b></td><td class="desc"></td></tr>
<tr id="row_22_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d80/classpytest__userver_1_1client_1_1AiohttpClient.html" target="_self">AiohttpClient</a></td><td class="desc"></td></tr>
<tr id="row_22_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d92/classpytest__userver_1_1client_1_1AiohttpClientMonitor.html" target="_self">AiohttpClientMonitor</a></td><td class="desc"></td></tr>
<tr id="row_22_0_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/db1/classpytest__userver_1_1client_1_1BaseError.html" target="_self">BaseError</a></td><td class="desc"></td></tr>
<tr id="row_22_0_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d79/classpytest__userver_1_1client_1_1Client.html" target="_self">Client</a></td><td class="desc"></td></tr>
<tr id="row_22_0_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dd8/classpytest__userver_1_1client_1_1ClientMonitor.html" target="_self">ClientMonitor</a></td><td class="desc"></td></tr>
<tr id="row_22_0_5_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d61/classpytest__userver_1_1client_1_1ClientWrapper.html" target="_self">ClientWrapper</a></td><td class="desc"></td></tr>
<tr id="row_22_0_6_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d95/classpytest__userver_1_1client_1_1ConfigurationError.html" target="_self">ConfigurationError</a></td><td class="desc"></td></tr>
<tr id="row_22_0_7_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dee/classpytest__userver_1_1client_1_1State.html" target="_self">State</a></td><td class="desc"></td></tr>
<tr id="row_22_0_8_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dbf/classpytest__userver_1_1client_1_1StateManager.html" target="_self">StateManager</a></td><td class="desc"></td></tr>
<tr id="row_22_0_9_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d3e/classpytest__userver_1_1client_1_1TestsuiteClientConfig.html" target="_self">TestsuiteClientConfig</a></td><td class="desc"></td></tr>
<tr id="row_22_0_10_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d54/classpytest__userver_1_1client_1_1TestsuiteTaskConflict.html" target="_self">TestsuiteTaskConflict</a></td><td class="desc"></td></tr>
<tr id="row_22_0_11_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dc5/classpytest__userver_1_1client_1_1TestsuiteTaskError.html" target="_self">TestsuiteTaskError</a></td><td class="desc"></td></tr>
<tr id="row_22_0_12_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5d/classpytest__userver_1_1client_1_1TestsuiteTaskFailed.html" target="_self">TestsuiteTaskFailed</a></td><td class="desc"></td></tr>
<tr id="row_22_0_13_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d2f/classpytest__userver_1_1client_1_1TestsuiteTaskNotFound.html" target="_self">TestsuiteTaskNotFound</a></td><td class="desc"></td></tr>
<tr id="row_22_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_22_1_" class="arrow" onclick="toggleFolder('22_1_')">►</span><span class="icona"><span class="icon">N</span></span><b>plugins</b></td><td class="desc"></td></tr>
<tr id="row_22_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_22_1_0_" class="arrow" onclick="toggleFolder('22_1_0_')">►</span><span class="icona"><span class="icon">N</span></span><b>config</b></td><td class="desc"></td></tr>
<tr id="row_22_1_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/db9/classpytest__userver_1_1plugins_1_1config_1_1UserverConfig.html" target="_self">UserverConfig</a></td><td class="desc"></td></tr>
<tr id="row_22_1_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d45/classpytest__userver_1_1plugins_1_1config_1_1UserverConfigPlugin.html" target="_self">UserverConfigPlugin</a></td><td class="desc"></td></tr>
<tr id="row_22_1_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_22_1_1_" class="arrow" onclick="toggleFolder('22_1_1_')">►</span><span class="icona"><span class="icon">N</span></span><b>log_capture</b></td><td class="desc"></td></tr>
<tr id="row_22_1_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d76/classpytest__userver_1_1plugins_1_1log__capture_1_1CaptureControl.html" target="_self">CaptureControl</a></td><td class="desc"></td></tr>
<tr id="row_22_1_1_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dfb/classpytest__userver_1_1plugins_1_1log__capture_1_1CapturedLogs.html" target="_self">CapturedLogs</a></td><td class="desc"></td></tr>
<tr id="row_22_1_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_22_1_2_" class="arrow" onclick="toggleFolder('22_1_2_')">►</span><span class="icona"><span class="icon">N</span></span><b>service_runner</b></td><td class="desc"></td></tr>
<tr id="row_22_1_2_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_22_1_2_0_" class="arrow" onclick="toggleFolder('22_1_2_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d8d/classpytest__userver_1_1plugins_1_1service__runner_1_1ServiceRunnerModule.html" target="_self">ServiceRunnerModule</a></td><td class="desc"></td></tr>
<tr id="row_22_1_2_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d3b/classpytest__userver_1_1plugins_1_1service__runner_1_1ServiceRunnerModule_1_1FakeModule.html" target="_self">FakeModule</a></td><td class="desc"></td></tr>
<tr id="row_22_1_2_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5c/classpytest__userver_1_1plugins_1_1service__runner_1_1UserviceRunner.html" target="_self">UserviceRunner</a></td><td class="desc"></td></tr>
<tr id="row_22_1_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_22_1_3_" class="arrow" onclick="toggleFolder('22_1_3_')">►</span><span class="icona"><span class="icon">N</span></span><b>testpoint</b></td><td class="desc"></td></tr>
<tr id="row_22_1_3_0_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/db0/classpytest__userver_1_1plugins_1_1testpoint_1_1BaseError.html" target="_self">BaseError</a></td><td class="desc"></td></tr>
<tr id="row_22_1_3_1_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d69/classpytest__userver_1_1plugins_1_1testpoint_1_1TestpointControl.html" target="_self">TestpointControl</a></td><td class="desc"></td></tr>
<tr id="row_22_1_3_2_" class="odd" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d1e/classpytest__userver_1_1plugins_1_1testpoint_1_1UnregisteredTestpointError.html" target="_self">UnregisteredTestpointError</a></td><td class="desc"></td></tr>
<tr id="row_23_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_23_" class="arrow" onclick="toggleFolder('23_')">►</span><span class="icona"><span class="icon">N</span></span><b>rapidjson</b></td><td class="desc"></td></tr>
<tr id="row_23_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d04/classrapidjson_1_1GenericDocument.html" target="_self">GenericDocument</a></td><td class="desc"></td></tr>
<tr id="row_23_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d69/classrapidjson_1_1GenericValue.html" target="_self">GenericValue</a></td><td class="desc"></td></tr>
<tr id="row_23_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d4e/structrapidjson_1_1UTF8.html" target="_self">UTF8</a></td><td class="desc"></td></tr>
<tr id="row_24_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_24_" class="arrow" onclick="toggleFolder('24_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dd/dde/namespacercu.html" target="_self">rcu</a></td><td class="desc">Read-Copy-Update </td></tr>
<tr id="row_24_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d7c/classrcu_1_1MissingKeyException.html" target="_self">MissingKeyException</a></td><td class="desc">Thrown on missing element access </td></tr>
<tr id="row_24_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_24_1_" class="arrow" onclick="toggleFolder('24_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d1f/classrcu_1_1RcuMap.html" target="_self">RcuMap</a></td><td class="desc">Map-like structure allowing RCU keyset updates </td></tr>
<tr id="row_24_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d72/structrcu_1_1RcuMap_1_1InsertReturnTypeImpl.html" target="_self">InsertReturnTypeImpl</a></td><td class="desc"></td></tr>
<tr id="row_24_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/de4/classrcu_1_1RcuMapIterator.html" target="_self">RcuMapIterator</a></td><td class="desc">Forward iterator for the <a class="el" href="d0/d1f/classrcu_1_1RcuMap.html" title="Map-like structure allowing RCU keyset updates.">rcu::RcuMap</a> </td></tr>
<tr id="row_24_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/df3/classrcu_1_1ReadablePtr.html" target="_self">ReadablePtr</a></td><td class="desc"></td></tr>
<tr id="row_24_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d5a/classrcu_1_1Variable.html" target="_self">Variable</a></td><td class="desc">Read-Copy-Update variable </td></tr>
<tr id="row_24_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d80/classrcu_1_1WritablePtr.html" target="_self">WritablePtr</a></td><td class="desc"></td></tr>
<tr id="row_25_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_25_" class="arrow" onclick="toggleFolder('25_')">►</span><span class="icona"><span class="icon">N</span></span><b>redis</b></td><td class="desc"></td></tr>
<tr id="row_25_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d84/classredis_1_1ClientNotConnectedException.html" target="_self">ClientNotConnectedException</a></td><td class="desc">Cannot connect to some redis server shard </td></tr>
<tr id="row_25_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d21/classredis_1_1CmdArgs.html" target="_self">CmdArgs</a></td><td class="desc"></td></tr>
<tr id="row_25_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d26/structredis_1_1Command.html" target="_self">Command</a></td><td class="desc"></td></tr>
<tr id="row_25_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/ded/structredis_1_1CommandControl.html" target="_self">CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_25_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/db2/structredis_1_1CommandsBufferingSettings.html" target="_self">CommandsBufferingSettings</a></td><td class="desc"></td></tr>
<tr id="row_25_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dd2/structredis_1_1ConnectionInfo.html" target="_self">ConnectionInfo</a></td><td class="desc"></td></tr>
<tr id="row_25_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dff/classredis_1_1Exception.html" target="_self">Exception</a></td><td class="desc">Generic redis-related exception </td></tr>
<tr id="row_25_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dc2/classredis_1_1ExpireReply.html" target="_self">ExpireReply</a></td><td class="desc"></td></tr>
<tr id="row_25_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d1c/structredis_1_1GeoaddArg.html" target="_self">GeoaddArg</a></td><td class="desc"></td></tr>
<tr id="row_25_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d54/structredis_1_1GeoradiusOptions.html" target="_self">GeoradiusOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d09/structredis_1_1InstanceStatistics.html" target="_self">InstanceStatistics</a></td><td class="desc"></td></tr>
<tr id="row_25_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/da6/classredis_1_1InvalidArgumentException.html" target="_self">InvalidArgumentException</a></td><td class="desc">Invalid redis command argument </td></tr>
<tr id="row_25_12_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/ddc/classredis_1_1KeyHasNoExpirationException.html" target="_self">KeyHasNoExpirationException</a></td><td class="desc">Trying to get expiration from a nonexistent or a persistent key </td></tr>
<tr id="row_25_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d7a/classredis_1_1KeyShard.html" target="_self">KeyShard</a></td><td class="desc"></td></tr>
<tr id="row_25_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d65/classredis_1_1KeyShardFactory.html" target="_self">KeyShardFactory</a></td><td class="desc"></td></tr>
<tr id="row_25_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d79/classredis_1_1ParseConfigException.html" target="_self">ParseConfigException</a></td><td class="desc">Invalid config format </td></tr>
<tr id="row_25_16_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/da8/classredis_1_1ParseReplyException.html" target="_self">ParseReplyException</a></td><td class="desc">Invalid reply data format </td></tr>
<tr id="row_25_17_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/df8/structredis_1_1RangeOptions.html" target="_self">RangeOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_18_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dca/structredis_1_1RangeScoreOptions.html" target="_self">RangeScoreOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_19_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dd5/structredis_1_1RedisWaitConnected.html" target="_self">RedisWaitConnected</a></td><td class="desc"></td></tr>
<tr id="row_25_20_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d1a/classredis_1_1Reply.html" target="_self">Reply</a></td><td class="desc"></td></tr>
<tr id="row_25_21_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_25_21_" class="arrow" onclick="toggleFolder('25_21_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dc7/classredis_1_1ReplyData.html" target="_self">ReplyData</a></td><td class="desc"></td></tr>
<tr id="row_25_21_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_25_21_0_" class="arrow" onclick="toggleFolder('25_21_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dc8/classredis_1_1ReplyData_1_1KeyValues.html" target="_self">KeyValues</a></td><td class="desc"></td></tr>
<tr id="row_25_21_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d0a/classredis_1_1ReplyData_1_1KeyValues_1_1KeyValue.html" target="_self">KeyValue</a></td><td class="desc"></td></tr>
<tr id="row_25_21_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d8b/classredis_1_1ReplyData_1_1KeyValues_1_1KeyValueIt.html" target="_self">KeyValueIt</a></td><td class="desc"></td></tr>
<tr id="row_25_21_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_25_21_1_" class="arrow" onclick="toggleFolder('25_21_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dfe/classredis_1_1ReplyData_1_1MovableKeyValues.html" target="_self">MovableKeyValues</a></td><td class="desc"></td></tr>
<tr id="row_25_21_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d26/classredis_1_1ReplyData_1_1MovableKeyValues_1_1MovableKeyValue.html" target="_self">MovableKeyValue</a></td><td class="desc"></td></tr>
<tr id="row_25_21_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d6e/classredis_1_1ReplyData_1_1MovableKeyValues_1_1MovableKeyValueIt.html" target="_self">MovableKeyValueIt</a></td><td class="desc"></td></tr>
<tr id="row_25_22_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de1/classredis_1_1Request.html" target="_self">Request</a></td><td class="desc"></td></tr>
<tr id="row_25_23_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d1d/classredis_1_1RequestCancelledException.html" target="_self">RequestCancelledException</a></td><td class="desc"><a class="el" href="d5/de1/classredis_1_1Request.html">Request</a> was cancelled </td></tr>
<tr id="row_25_24_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d8b/classredis_1_1RequestFailedException.html" target="_self">RequestFailedException</a></td><td class="desc">No reply from redis server </td></tr>
<tr id="row_25_25_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d6c/classredis_1_1RequestFuture.html" target="_self">RequestFuture</a></td><td class="desc"></td></tr>
<tr id="row_25_26_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d2d/structredis_1_1RetryNilFromMaster.html" target="_self">RetryNilFromMaster</a></td><td class="desc"></td></tr>
<tr id="row_25_27_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d98/structredis_1_1ScanOptions.html" target="_self">ScanOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_28_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da1/structredis_1_1ScoreOptions.html" target="_self">ScoreOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_29_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/de8/classredis_1_1Sentinel.html" target="_self">Sentinel</a></td><td class="desc"></td></tr>
<tr id="row_25_30_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dc6/structredis_1_1SentinelStatistics.html" target="_self">SentinelStatistics</a></td><td class="desc"></td></tr>
<tr id="row_25_31_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d74/structredis_1_1SentinelStatisticsInternal.html" target="_self">SentinelStatisticsInternal</a></td><td class="desc"></td></tr>
<tr id="row_25_32_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dcb/classredis_1_1ServerId.html" target="_self">ServerId</a></td><td class="desc"></td></tr>
<tr id="row_25_33_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d77/structredis_1_1ServerIdHasher.html" target="_self">ServerIdHasher</a></td><td class="desc"></td></tr>
<tr id="row_25_34_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/structredis_1_1SetOptions.html" target="_self">SetOptions</a></td><td class="desc"></td></tr>
<tr id="row_25_35_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d5d/structredis_1_1ShardStatistics.html" target="_self">ShardStatistics</a></td><td class="desc"></td></tr>
<tr id="row_25_36_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da0/structredis_1_1Stat.html" target="_self">Stat</a></td><td class="desc"></td></tr>
<tr id="row_25_37_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/de0/classredis_1_1Statistics.html" target="_self">Statistics</a></td><td class="desc"></td></tr>
<tr id="row_25_38_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d86/classredis_1_1ThreadPools.html" target="_self">ThreadPools</a></td><td class="desc"></td></tr>
<tr id="row_25_39_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/db6/classredis_1_1TtlReply.html" target="_self">TtlReply</a></td><td class="desc"></td></tr>
<tr id="row_25_40_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d21/structredis_1_1ZaddOptions.html" target="_self">ZaddOptions</a></td><td class="desc"></td></tr>
<tr id="row_26_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_26_" class="arrow" onclick="toggleFolder('26_')">►</span><span class="icona"><span class="icon">N</span></span><b>secdist</b></td><td class="desc"></td></tr>
<tr id="row_26_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_26_0_" class="arrow" onclick="toggleFolder('26_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d05/structsecdist_1_1RedisSettings.html" target="_self">RedisSettings</a></td><td class="desc"></td></tr>
<tr id="row_26_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d0d/structsecdist_1_1RedisSettings_1_1HostPort.html" target="_self">HostPort</a></td><td class="desc"></td></tr>
<tr id="row_27_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_27_" class="arrow" onclick="toggleFolder('27_')">►</span><span class="icona"><span class="icon">N</span></span><b>server</b></td><td class="desc"></td></tr>
<tr id="row_27_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_27_0_" class="arrow" onclick="toggleFolder('27_0_')">►</span><span class="icona"><span class="icon">N</span></span><b>auth</b></td><td class="desc"></td></tr>
<tr id="row_27_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d20/classserver_1_1auth_1_1UserAuthInfo.html" target="_self">UserAuthInfo</a></td><td class="desc"></td></tr>
<tr id="row_27_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d19/classserver_1_1auth_1_1UserScope.html" target="_self">UserScope</a></td><td class="desc"></td></tr>
<tr id="row_27_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_27_1_" class="arrow" onclick="toggleFolder('27_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d2/d24/namespaceserver_1_1handlers.html" target="_self">handlers</a></td><td class="desc">Most common <a class="el" href="d2/d9b/group__userver__http__handlers.html">userver HTTP handlers</a> </td></tr>
<tr id="row_27_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_27_1_0_" class="arrow" onclick="toggleFolder('27_1_0_')">►</span><span class="icona"><span class="icon">N</span></span><b>auth</b></td><td class="desc"></td></tr>
<tr id="row_27_1_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/db7/classserver_1_1handlers_1_1auth_1_1AuthCheckerBase.html" target="_self">AuthCheckerBase</a></td><td class="desc"></td></tr>
<tr id="row_27_1_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d14/classserver_1_1handlers_1_1auth_1_1AuthCheckerFactoryBase.html" target="_self">AuthCheckerFactoryBase</a></td><td class="desc">Base class for all the authorization factory checkers </td></tr>
<tr id="row_27_1_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d13/classserver_1_1handlers_1_1auth_1_1AuthCheckerSettings.html" target="_self">AuthCheckerSettings</a></td><td class="desc"></td></tr>
<tr id="row_27_1_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d67/structserver_1_1handlers_1_1auth_1_1AuthCheckResult.html" target="_self">AuthCheckResult</a></td><td class="desc"></td></tr>
<tr id="row_27_1_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dd7/classserver_1_1handlers_1_1auth_1_1HandlerAuthConfig.html" target="_self">HandlerAuthConfig</a></td><td class="desc"></td></tr>
<tr id="row_27_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d63/classserver_1_1handlers_1_1ClientError.html" target="_self">ClientError</a></td><td class="desc"></td></tr>
<tr id="row_27_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d7f/classserver_1_1handlers_1_1CustomHandlerException.html" target="_self">CustomHandlerException</a></td><td class="desc">Base class for handler exceptions </td></tr>
<tr id="row_27_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d48/classserver_1_1handlers_1_1DnsClientControl.html" target="_self">DnsClientControl</a></td><td class="desc">Handlers that controls the DNS client </td></tr>
<tr id="row_27_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dea/classserver_1_1handlers_1_1DynamicDebugLog.html" target="_self">DynamicDebugLog</a></td><td class="desc">Handler for forcing specific lines logging. Feature also known as dynamic debug logging </td></tr>
<tr id="row_27_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">ExceptionWithCode</a></td><td class="desc"></td></tr>
<tr id="row_27_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da5/structserver_1_1handlers_1_1ExternalBody.html" target="_self">ExternalBody</a></td><td class="desc"></td></tr>
<tr id="row_27_1_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d5b/structserver_1_1handlers_1_1ExtraHeaders.html" target="_self">ExtraHeaders</a></td><td class="desc"></td></tr>
<tr id="row_27_1_8_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d39/structserver_1_1handlers_1_1FormattedErrorData.html" target="_self">FormattedErrorData</a></td><td class="desc"></td></tr>
<tr id="row_27_1_9_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/ddc/classserver_1_1handlers_1_1HandlerBase.html" target="_self">HandlerBase</a></td><td class="desc">Base class for the request handlers </td></tr>
<tr id="row_27_1_10_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d5f/structserver_1_1handlers_1_1HandlerConfig.html" target="_self">HandlerConfig</a></td><td class="desc"></td></tr>
<tr id="row_27_1_11_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d68/structserver_1_1handlers_1_1HandlerErrorCodeHash.html" target="_self">HandlerErrorCodeHash</a></td><td class="desc"></td></tr>
<tr id="row_27_1_12_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d36/classserver_1_1handlers_1_1HttpHandlerBase.html" target="_self">HttpHandlerBase</a></td><td class="desc">Base class for all the <a class="el" href="d2/d9b/group__userver__http__handlers.html">Userver HTTP Handlers</a> </td></tr>
<tr id="row_27_1_13_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dfe/classserver_1_1handlers_1_1HttpHandlerFlatbufBase.html" target="_self">HttpHandlerFlatbufBase</a></td><td class="desc">Convenient base for handlers that accept requests with body in Flatbuffer format and respond with body in Flatbuffer format </td></tr>
<tr id="row_27_1_14_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dbe/classserver_1_1handlers_1_1HttpHandlerJsonBase.html" target="_self">HttpHandlerJsonBase</a></td><td class="desc">Convenient base for handlers that accept requests with body in JSON format and respond with body in JSON format </td></tr>
<tr id="row_27_1_15_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d88/classserver_1_1handlers_1_1HttpHandlerStatic.html" target="_self">HttpHandlerStatic</a></td><td class="desc">Handler that returns HTTP 200 if file exist and returns file data with mapped content/type </td></tr>
<tr id="row_27_1_16_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d67/classserver_1_1handlers_1_1InspectRequests.html" target="_self">InspectRequests</a></td><td class="desc">Handler that returns information about all in-flight requests </td></tr>
<tr id="row_27_1_17_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dd0/structserver_1_1handlers_1_1InternalMessage.html" target="_self">InternalMessage</a></td><td class="desc"></td></tr>
<tr id="row_27_1_18_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d98/classserver_1_1handlers_1_1InternalServerError.html" target="_self">InternalServerError</a></td><td class="desc"></td></tr>
<tr id="row_27_1_19_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d34/classserver_1_1handlers_1_1Jemalloc.html" target="_self">Jemalloc</a></td><td class="desc">Handler that controlls the jemalloc allocator </td></tr>
<tr id="row_27_1_20_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/ded/classserver_1_1handlers_1_1JsonErrorBuilder.html" target="_self">JsonErrorBuilder</a></td><td class="desc"></td></tr>
<tr id="row_27_1_21_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d21/classserver_1_1handlers_1_1LegacyJsonErrorBuilder.html" target="_self">LegacyJsonErrorBuilder</a></td><td class="desc"></td></tr>
<tr id="row_27_1_22_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da0/classserver_1_1handlers_1_1LogLevel.html" target="_self">LogLevel</a></td><td class="desc">Handler that controlls logging levels of all the loggers </td></tr>
<tr id="row_27_1_23_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d6d/classserver_1_1handlers_1_1Ping.html" target="_self">Ping</a></td><td class="desc">Handler that returns HTTP 200 if the service is OK and able to process requests </td></tr>
<tr id="row_27_1_24_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/ddf/classserver_1_1handlers_1_1RequestParseError.html" target="_self">RequestParseError</a></td><td class="desc"></td></tr>
<tr id="row_27_1_25_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d91/classserver_1_1handlers_1_1ResourceNotFound.html" target="_self">ResourceNotFound</a></td><td class="desc"></td></tr>
<tr id="row_27_1_26_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d10/classserver_1_1handlers_1_1ServerMonitor.html" target="_self">ServerMonitor</a></td><td class="desc">Handler that returns statistics data </td></tr>
<tr id="row_27_1_27_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d62/structserver_1_1handlers_1_1ServiceErrorCode.html" target="_self">ServiceErrorCode</a></td><td class="desc"></td></tr>
<tr id="row_27_1_28_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/ded/classserver_1_1handlers_1_1TestsControl.html" target="_self">TestsControl</a></td><td class="desc">Handler that allows to control the behavior of server from tests </td></tr>
<tr id="row_27_1_29_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d7b/classserver_1_1handlers_1_1Unauthorized.html" target="_self">Unauthorized</a></td><td class="desc"></td></tr>
<tr id="row_27_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_27_2_" class="arrow" onclick="toggleFolder('27_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="df/df5/namespaceserver_1_1http.html" target="_self">http</a></td><td class="desc"><a class="el" href="d0/d68/classserver_1_1Server.html">Server</a> parts of the HTTP protocol implementation </td></tr>
<tr id="row_27_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d9b/classserver_1_1http_1_1Cookie.html" target="_self">Cookie</a></td><td class="desc">HTTP response cookie </td></tr>
<tr id="row_27_2_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d99/structserver_1_1http_1_1FormDataArg.html" target="_self">FormDataArg</a></td><td class="desc">Argument of a multipart/form-data request </td></tr>
<tr id="row_27_2_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d44/classserver_1_1http_1_1HttpRequest.html" target="_self">HttpRequest</a></td><td class="desc">HTTP Request data </td></tr>
<tr id="row_27_2_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da4/classserver_1_1http_1_1HttpResponse.html" target="_self">HttpResponse</a></td><td class="desc">HTTP Response data </td></tr>
<tr id="row_27_2_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d63/classserver_1_1http_1_1ResponseBodyStream.html" target="_self">ResponseBodyStream</a></td><td class="desc"></td></tr>
<tr id="row_27_3_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_27_3_" class="arrow" onclick="toggleFolder('27_3_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d9/df8/namespaceserver_1_1request.html" target="_self">request</a></td><td class="desc"><a class="el" href="d0/d68/classserver_1_1Server.html">Server</a> request related types and functions </td></tr>
<tr id="row_27_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d23/structserver_1_1request_1_1HttpRequestConfig.html" target="_self">HttpRequestConfig</a></td><td class="desc"></td></tr>
<tr id="row_27_3_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d0e/classserver_1_1request_1_1RequestBase.html" target="_self">RequestBase</a></td><td class="desc"></td></tr>
<tr id="row_27_3_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/df6/classserver_1_1request_1_1RequestContext.html" target="_self">RequestContext</a></td><td class="desc">Stores request-specific data during request processing </td></tr>
<tr id="row_27_3_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_27_3_3_" class="arrow" onclick="toggleFolder('27_3_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dee/classserver_1_1request_1_1ResponseBase.html" target="_self">ResponseBase</a></td><td class="desc">Base class for all the server responses </td></tr>
<tr id="row_27_3_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/db0/classserver_1_1request_1_1ResponseBase_1_1Guard.html" target="_self">Guard</a></td><td class="desc"></td></tr>
<tr id="row_27_3_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d6f/classserver_1_1request_1_1ResponseDataAccounter.html" target="_self">ResponseDataAccounter</a></td><td class="desc"></td></tr>
<tr id="row_27_3_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d73/structserver_1_1request_1_1TaskInheritedData.html" target="_self">TaskInheritedData</a></td><td class="desc">Per-request data that should be available inside handlers </td></tr>
<tr id="row_27_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d68/classserver_1_1Server.html" target="_self">Server</a></td><td class="desc"></td></tr>
<tr id="row_28_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_28_" class="arrow" onclick="toggleFolder('28_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d8/dcc/namespacestd.html" target="_self">std</a></td><td class="desc">STL namespace </td></tr>
<tr id="row_28_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d9a/structstd_1_1hash_3_1_1decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">hash<::decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc">Std::hash support </td></tr>
<tr id="row_28_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d91/structstd_1_1hash_3_1_1formats_1_1bson_1_1Binary_01_4.html" target="_self">hash<::formats::bson::Binary ></a></td><td class="desc"></td></tr>
<tr id="row_28_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d5c/structstd_1_1hash_3_1_1formats_1_1bson_1_1Oid_01_4.html" target="_self">hash<::formats::bson::Oid ></a></td><td class="desc"></td></tr>
<tr id="row_28_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d51/structstd_1_1hash_3_1_1formats_1_1bson_1_1Timestamp_01_4.html" target="_self">hash<::formats::bson::Timestamp ></a></td><td class="desc"></td></tr>
<tr id="row_28_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dd4/structstd_1_1hash_3_1_1server_1_1auth_1_1UserScope_01_4.html" target="_self">hash<::server::auth::UserScope ></a></td><td class="desc"></td></tr>
<tr id="row_28_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d40/structstd_1_1hash_3_1_1storages_1_1postgres_1_1DBTypeName_01_4.html" target="_self">hash<::storages::postgres::DBTypeName ></a></td><td class="desc"></td></tr>
<tr id="row_28_6_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/de6/structstd_1_1hash_3_1_1storages_1_1postgres_1_1io_1_1PredefinedOids_01_4.html" target="_self">hash<::storages::postgres::io::PredefinedOids ></a></td><td class="desc"></td></tr>
<tr id="row_28_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d56/structstd_1_1hash_3_1_1storages_1_1postgres_1_1SqlState_01_4.html" target="_self">hash<::storages::postgres::SqlState ></a></td><td class="desc">Specialization of std::hash template for SqlState </td></tr>
<tr id="row_28_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d05/structstd_1_1hash_3_1_1utils_1_1CachedHash_3_01T_01_4_01_4.html" target="_self">hash<::utils::CachedHash< T > ></a></td><td class="desc"></td></tr>
<tr id="row_28_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d38/structstd_1_1hash_3_1_1utils_1_1StrongTypedef_3_01Tag_00_01T_00_01Ops_01_4_01_4.html" target="_self">hash<::utils::StrongTypedef< Tag, T, Ops > ></a></td><td class="desc"></td></tr>
<tr id="row_29_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_29_" class="arrow" onclick="toggleFolder('29_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d0/d91/namespacestorages.html" target="_self">storages</a></td><td class="desc">Components, clients and helpers for different databases and storages </td></tr>
<tr id="row_29_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_29_0_" class="arrow" onclick="toggleFolder('29_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="dd/de0/namespacestorages_1_1clickhouse.html" target="_self">clickhouse</a></td><td class="desc">Top namespace for uClickHouse driver </td></tr>
<tr id="row_29_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_0_0_" class="arrow" onclick="toggleFolder('29_0_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d8/dd6/namespacestorages_1_1clickhouse_1_1io.html" target="_self">io</a></td><td class="desc">UClickHouse input-output </td></tr>
<tr id="row_29_0_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_29_0_0_0_" class="arrow" onclick="toggleFolder('29_0_0_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d6/d2f/namespacestorages_1_1clickhouse_1_1io_1_1columns.html" target="_self">columns</a></td><td class="desc">UClickHouse columns </td></tr>
<tr id="row_29_0_0_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/da4/classstorages_1_1clickhouse_1_1io_1_1columns_1_1ClickhouseColumn.html" target="_self">ClickhouseColumn</a></td><td class="desc">Base class for every typed ClickHouse column. To add new columns one should derive from this class, define types aliases: </td></tr>
<tr id="row_29_0_0_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d44/classstorages_1_1clickhouse_1_1io_1_1columns_1_1ColumnIterator.html" target="_self">ColumnIterator</a></td><td class="desc">Forward-iterator for iterating over column of type ColumnType </td></tr>
<tr id="row_29_0_0_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d92/classstorages_1_1clickhouse_1_1io_1_1columns_1_1DateTime64Column.html" target="_self">DateTime64Column</a></td><td class="desc">Helper class for instantiating DateTime64 columns </td></tr>
<tr id="row_29_0_0_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_29_0_0_0_3_" class="arrow" onclick="toggleFolder('29_0_0_0_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/db8/classstorages_1_1clickhouse_1_1io_1_1columns_1_1DateTime64Column_3_01Precision_00_01Duration_3_01Rep_00_01Period_01_4_01_4.html" target="_self">DateTime64Column< Precision, Duration< Rep, Period > ></a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_0_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d2f/structstorages_1_1clickhouse_1_1io_1_1columns_1_1DateTime64Column_3_01Precision_00_01Duration_3_be5e9514a2d2c63db5189a53aa0bbf7a.html" target="_self">Tag</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d19/classstorages_1_1clickhouse_1_1io_1_1columns_1_1DateTimeColumn.html" target="_self">DateTimeColumn</a></td><td class="desc">Represents ClickHouse DateTime column </td></tr>
<tr id="row_29_0_0_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d6c/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Float32Column.html" target="_self">Float32Column</a></td><td class="desc">Represents Clickhouse Float32 column </td></tr>
<tr id="row_29_0_0_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dd2/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Float64Column.html" target="_self">Float64Column</a></td><td class="desc">Represents Clickhouse Float64 column </td></tr>
<tr id="row_29_0_0_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d45/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int32Column.html" target="_self">Int32Column</a></td><td class="desc">Represents Clickhouse Int32 column </td></tr>
<tr id="row_29_0_0_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d2a/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int64Column.html" target="_self">Int64Column</a></td><td class="desc">Represents ClickHouse Int64 column </td></tr>
<tr id="row_29_0_0_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d45/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int8Column.html" target="_self">Int8Column</a></td><td class="desc">Represents ClickHouse UInt8 Column </td></tr>
<tr id="row_29_0_0_0_10_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_29_0_0_0_10_" class="arrow" onclick="toggleFolder('29_0_0_0_10_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/db3/classstorages_1_1clickhouse_1_1io_1_1columns_1_1NullableColumn.html" target="_self">NullableColumn</a></td><td class="desc">Represents ClickHouse Nullable(T) column, where T is a <a class="el" href="df/da4/classstorages_1_1clickhouse_1_1io_1_1columns_1_1ClickhouseColumn.html" title="Base class for every typed ClickHouse column. To add new columns one should derive from this class,...">ClickhouseColumn</a> as well </td></tr>
<tr id="row_29_0_0_0_10_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d0d/classstorages_1_1clickhouse_1_1io_1_1columns_1_1NullableColumn_1_1NullableDataHolder.html" target="_self">NullableDataHolder</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_0_11_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d36/structstorages_1_1clickhouse_1_1io_1_1columns_1_1NullableColumnMeta.html" target="_self">NullableColumnMeta</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_0_12_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d26/classstorages_1_1clickhouse_1_1io_1_1columns_1_1StringColumn.html" target="_self">StringColumn</a></td><td class="desc">Represents ClickHouse String column </td></tr>
<tr id="row_29_0_0_0_13_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dfc/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt32Column.html" target="_self">UInt32Column</a></td><td class="desc">Represents ClickHouse UInt32 column </td></tr>
<tr id="row_29_0_0_0_14_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d93/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt64Column.html" target="_self">UInt64Column</a></td><td class="desc">Represents ClickHouse UInt64 column </td></tr>
<tr id="row_29_0_0_0_15_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d3b/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt8Column.html" target="_self">UInt8Column</a></td><td class="desc">Represents ClickHouse UInt8 Column </td></tr>
<tr id="row_29_0_0_0_16_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dd7/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UuidColumn.html" target="_self">UuidColumn</a></td><td class="desc">Represents ClickHouse UUID column </td></tr>
<tr id="row_29_0_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d5e/classstorages_1_1clickhouse_1_1io_1_1ColumnsMapper.html" target="_self">ColumnsMapper</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/db6/structstorages_1_1clickhouse_1_1io_1_1CppToClickhouse.html" target="_self">CppToClickhouse</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_29_0_0_3_" class="arrow" onclick="toggleFolder('29_0_0_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1d/classstorages_1_1clickhouse_1_1io_1_1RowsMapper.html" target="_self">RowsMapper</a></td><td class="desc"></td></tr>
<tr id="row_29_0_0_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dc5/classstorages_1_1clickhouse_1_1io_1_1RowsMapper_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"></td></tr>
<tr id="row_29_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_0_1_" class="arrow" onclick="toggleFolder('29_0_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d48/classstorages_1_1clickhouse_1_1Cluster.html" target="_self">Cluster</a></td><td class="desc">Interface for executing queries on a cluster of ClickHouse servers </td></tr>
<tr id="row_29_0_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d78/classstorages_1_1clickhouse_1_1Cluster_1_1NoAvailablePoolError.html" target="_self">NoAvailablePoolError</a></td><td class="desc">Exception that is thrown if all specified endpoints are unavailable </td></tr>
<tr id="row_29_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dd9/structstorages_1_1clickhouse_1_1CommandControl.html" target="_self">CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_29_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dbb/classstorages_1_1clickhouse_1_1ExecutionResult.html" target="_self">ExecutionResult</a></td><td class="desc"></td></tr>
<tr id="row_29_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d94/classstorages_1_1clickhouse_1_1Query.html" target="_self">Query</a></td><td class="desc">Holds a query and its name. In case query is expected to be executed with parameters, query text should conform to fmt format </td></tr>
<tr id="row_29_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_29_1_" class="arrow" onclick="toggleFolder('29_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d3/db5/namespacestorages_1_1mongo.html" target="_self">mongo</a></td><td class="desc">MongoDB client </td></tr>
<tr id="row_29_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_1_0_" class="arrow" onclick="toggleFolder('29_1_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d4/d35/namespacestorages_1_1mongo_1_1bulk__ops.html" target="_self">bulk_ops</a></td><td class="desc">Bulk sub-operations </td></tr>
<tr id="row_29_1_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dcf/classstorages_1_1mongo_1_1bulk__ops_1_1Delete.html" target="_self">Delete</a></td><td class="desc">Deletes documents as part of bulk operation </td></tr>
<tr id="row_29_1_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5b/classstorages_1_1mongo_1_1bulk__ops_1_1InsertOne.html" target="_self">InsertOne</a></td><td class="desc">Inserts a single document as part of bulk operation </td></tr>
<tr id="row_29_1_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d75/classstorages_1_1mongo_1_1bulk__ops_1_1ReplaceOne.html" target="_self">ReplaceOne</a></td><td class="desc">Replaces a single document as part of bulk operation </td></tr>
<tr id="row_29_1_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dd2/classstorages_1_1mongo_1_1bulk__ops_1_1Update.html" target="_self">Update</a></td><td class="desc">Updates documents as part of bulk operation </td></tr>
<tr id="row_29_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_1_1_" class="arrow" onclick="toggleFolder('29_1_1_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="df/dc7/namespacestorages_1_1mongo_1_1operations.html" target="_self">operations</a></td><td class="desc"><a class="el" href="db/d50/classstorages_1_1mongo_1_1Collection.html" title="MongoDB collection handle, the main way to operate with MongoDB.">Collection</a> operations </td></tr>
<tr id="row_29_1_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dd2/classstorages_1_1mongo_1_1operations_1_1Aggregate.html" target="_self">Aggregate</a></td><td class="desc">Runs an aggregation pipeline </td></tr>
<tr id="row_29_1_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dce/classstorages_1_1mongo_1_1operations_1_1Bulk.html" target="_self">Bulk</a></td><td class="desc">Efficiently executes a number of operations over a single collection </td></tr>
<tr id="row_29_1_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d4e/classstorages_1_1mongo_1_1operations_1_1Count.html" target="_self">Count</a></td><td class="desc">Counts documents matching the filter </td></tr>
<tr id="row_29_1_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d2a/classstorages_1_1mongo_1_1operations_1_1CountApprox.html" target="_self">CountApprox</a></td><td class="desc">Returns approximate number of documents in a collection </td></tr>
<tr id="row_29_1_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d41/classstorages_1_1mongo_1_1operations_1_1Delete.html" target="_self">Delete</a></td><td class="desc">Deletes documents </td></tr>
<tr id="row_29_1_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d55/classstorages_1_1mongo_1_1operations_1_1Find.html" target="_self">Find</a></td><td class="desc">Retrieves documents matching the filter </td></tr>
<tr id="row_29_1_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/da3/classstorages_1_1mongo_1_1operations_1_1FindAndModify.html" target="_self">FindAndModify</a></td><td class="desc">Atomically updates a document and returns either previous or new version </td></tr>
<tr id="row_29_1_1_7_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dfb/classstorages_1_1mongo_1_1operations_1_1FindAndRemove.html" target="_self">FindAndRemove</a></td><td class="desc">Atomically removes a document and returns it </td></tr>
<tr id="row_29_1_1_8_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d6e/classstorages_1_1mongo_1_1operations_1_1InsertMany.html" target="_self">InsertMany</a></td><td class="desc">Inserts multiple documents </td></tr>
<tr id="row_29_1_1_9_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d01/classstorages_1_1mongo_1_1operations_1_1InsertOne.html" target="_self">InsertOne</a></td><td class="desc">Inserts a single document </td></tr>
<tr id="row_29_1_1_10_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de4/classstorages_1_1mongo_1_1operations_1_1ReplaceOne.html" target="_self">ReplaceOne</a></td><td class="desc">Replaces a single document </td></tr>
<tr id="row_29_1_1_11_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dfc/classstorages_1_1mongo_1_1operations_1_1Update.html" target="_self">Update</a></td><td class="desc">Updates documents </td></tr>
<tr id="row_29_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_1_2_" class="arrow" onclick="toggleFolder('29_1_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="de/dff/namespacestorages_1_1mongo_1_1options.html" target="_self">options</a></td><td class="desc"><a class="el" href="db/d50/classstorages_1_1mongo_1_1Collection.html" title="MongoDB collection handle, the main way to operate with MongoDB.">Collection</a> operation options </td></tr>
<tr id="row_29_1_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dea/classstorages_1_1mongo_1_1options_1_1AllowPartialResults.html" target="_self">AllowPartialResults</a></td><td class="desc">Suppresses errors on querying a sharded collection with unavailable shards </td></tr>
<tr id="row_29_1_2_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dbe/classstorages_1_1mongo_1_1options_1_1Comment.html" target="_self">Comment</a></td><td class="desc">Sets a comment for the operation, which would be visible in profile data </td></tr>
<tr id="row_29_1_2_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d58/classstorages_1_1mongo_1_1options_1_1Hint.html" target="_self">Hint</a></td><td class="desc">Specifies an index to use for the query </td></tr>
<tr id="row_29_1_2_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d6b/classstorages_1_1mongo_1_1options_1_1Limit.html" target="_self">Limit</a></td><td class="desc">Specifies the number of documents to request from the server </td></tr>
<tr id="row_29_1_2_4_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/db6/classstorages_1_1mongo_1_1options_1_1MaxServerTime.html" target="_self">MaxServerTime</a></td><td class="desc">Specifies the server-side time limit for the operation </td></tr>
<tr id="row_29_1_2_5_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d00/classstorages_1_1mongo_1_1options_1_1Projection.html" target="_self">Projection</a></td><td class="desc">Selects fields to be returned </td></tr>
<tr id="row_29_1_2_6_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/db5/classstorages_1_1mongo_1_1options_1_1ReadPreference.html" target="_self">ReadPreference</a></td><td class="desc">Read preference </td></tr>
<tr id="row_29_1_2_7_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d28/classstorages_1_1mongo_1_1options_1_1RetryDuplicateKey.html" target="_self">RetryDuplicateKey</a></td><td class="desc">Enables automatic one-time retry of duplicate key errors </td></tr>
<tr id="row_29_1_2_8_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d9c/classstorages_1_1mongo_1_1options_1_1ReturnNew.html" target="_self">ReturnNew</a></td><td class="desc">Specifies that FindAndModify should return the new version of an object </td></tr>
<tr id="row_29_1_2_9_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dc7/classstorages_1_1mongo_1_1options_1_1Skip.html" target="_self">Skip</a></td><td class="desc">Specifies the number of documents to skip </td></tr>
<tr id="row_29_1_2_10_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dd2/classstorages_1_1mongo_1_1options_1_1Sort.html" target="_self">Sort</a></td><td class="desc">Sorts the results </td></tr>
<tr id="row_29_1_2_11_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dcf/classstorages_1_1mongo_1_1options_1_1SuppressServerExceptions.html" target="_self">SuppressServerExceptions</a></td><td class="desc">Disables exception throw on server errors, should be checked manually in <a class="el" href="d3/dc9/classstorages_1_1mongo_1_1WriteResult.html" title="MongoDB write operation result.">WriteResult</a> </td></tr>
<tr id="row_29_1_2_12_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de2/classstorages_1_1mongo_1_1options_1_1Tailable.html" target="_self">Tailable</a></td><td class="desc">Enables tailable cursor, which block at the end of capped collections </td></tr>
<tr id="row_29_1_2_13_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dee/classstorages_1_1mongo_1_1options_1_1Unordered.html" target="_self">Unordered</a></td><td class="desc">Disables ordering on bulk operations causing them to continue after an error </td></tr>
<tr id="row_29_1_2_14_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d6f/classstorages_1_1mongo_1_1options_1_1Upsert.html" target="_self">Upsert</a></td><td class="desc">Enables insertion of a new document when update selector matches nothing </td></tr>
<tr id="row_29_1_2_15_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d38/classstorages_1_1mongo_1_1options_1_1WriteConcern.html" target="_self">WriteConcern</a></td><td class="desc">Write concern </td></tr>
<tr id="row_29_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dd6/classstorages_1_1mongo_1_1AuthenticationException.html" target="_self">AuthenticationException</a></td><td class="desc">Authentication error </td></tr>
<tr id="row_29_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d48/classstorages_1_1mongo_1_1ClusterUnavailableException.html" target="_self">ClusterUnavailableException</a></td><td class="desc">No server available to satisfy request constraints </td></tr>
<tr id="row_29_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d50/classstorages_1_1mongo_1_1Collection.html" target="_self">Collection</a></td><td class="desc">MongoDB collection handle, the main way to operate with MongoDB </td></tr>
<tr id="row_29_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_1_6_" class="arrow" onclick="toggleFolder('29_1_6_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dbe/classstorages_1_1mongo_1_1Cursor.html" target="_self">Cursor</a></td><td class="desc">Interface for MongoDB query cursors </td></tr>
<tr id="row_29_1_6_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_29_1_6_0_" class="arrow" onclick="toggleFolder('29_1_6_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d4f/classstorages_1_1mongo_1_1Cursor_1_1Iterator.html" target="_self">Iterator</a></td><td class="desc"></td></tr>
<tr id="row_29_1_6_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d20/classstorages_1_1mongo_1_1Cursor_1_1Iterator_1_1DocHolder.html" target="_self">DocHolder</a></td><td class="desc"></td></tr>
<tr id="row_29_1_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/df7/classstorages_1_1mongo_1_1DistLockComponentBase.html" target="_self">DistLockComponentBase</a></td><td class="desc">Base class for mongo-based distlock worker components </td></tr>
<tr id="row_29_1_8_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d22/classstorages_1_1mongo_1_1DistLockStrategy.html" target="_self">DistLockStrategy</a></td><td class="desc">Strategy for mongodb-based distributed locking </td></tr>
<tr id="row_29_1_9_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d4b/classstorages_1_1mongo_1_1DuplicateKeyException.html" target="_self">DuplicateKeyException</a></td><td class="desc">Duplicate key error </td></tr>
<tr id="row_29_1_10_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/df9/classstorages_1_1mongo_1_1IncompatibleServerException.html" target="_self">IncompatibleServerException</a></td><td class="desc">Incompatible server version </td></tr>
<tr id="row_29_1_11_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d1d/classstorages_1_1mongo_1_1InvalidConfigException.html" target="_self">InvalidConfigException</a></td><td class="desc">Config validation error </td></tr>
<tr id="row_29_1_12_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/db8/classstorages_1_1mongo_1_1InvalidQueryArgumentException.html" target="_self">InvalidQueryArgumentException</a></td><td class="desc">Query argument validation error </td></tr>
<tr id="row_29_1_13_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/df5/classstorages_1_1mongo_1_1MongoError.html" target="_self">MongoError</a></td><td class="desc">MongoDB error </td></tr>
<tr id="row_29_1_14_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dc4/classstorages_1_1mongo_1_1MongoException.html" target="_self">MongoException</a></td><td class="desc">Generic mongo-related exception </td></tr>
<tr id="row_29_1_15_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_1_15_" class="arrow" onclick="toggleFolder('29_1_15_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/ddd/classstorages_1_1mongo_1_1MultiMongo.html" target="_self">MultiMongo</a></td><td class="desc"></td></tr>
<tr id="row_29_1_15_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d29/classstorages_1_1mongo_1_1MultiMongo_1_1PoolSet.html" target="_self">PoolSet</a></td><td class="desc">Database set builder </td></tr>
<tr id="row_29_1_16_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d68/classstorages_1_1mongo_1_1NetworkException.html" target="_self">NetworkException</a></td><td class="desc">Network (connectivity) error </td></tr>
<tr id="row_29_1_17_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d08/classstorages_1_1mongo_1_1Pool.html" target="_self">Pool</a></td><td class="desc">MongoDB client pool </td></tr>
<tr id="row_29_1_18_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d52/classstorages_1_1mongo_1_1PoolConfig.html" target="_self">PoolConfig</a></td><td class="desc">MongoDB connection pool configuration </td></tr>
<tr id="row_29_1_19_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d28/classstorages_1_1mongo_1_1PoolNotFoundException.html" target="_self">PoolNotFoundException</a></td><td class="desc">Nonexistent pool requested from the set </td></tr>
<tr id="row_29_1_20_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d28/classstorages_1_1mongo_1_1PoolOverloadException.html" target="_self">PoolOverloadException</a></td><td class="desc"><a class="el" href="d6/d08/classstorages_1_1mongo_1_1Pool.html" title="MongoDB client pool.">Pool</a> refused to satisfy connection request due to high load </td></tr>
<tr id="row_29_1_21_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/db7/classstorages_1_1mongo_1_1QueryException.html" target="_self">QueryException</a></td><td class="desc">Generic query error </td></tr>
<tr id="row_29_1_22_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de8/classstorages_1_1mongo_1_1ServerException.html" target="_self">ServerException</a></td><td class="desc">Server-side error </td></tr>
<tr id="row_29_1_23_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d98/classstorages_1_1mongo_1_1WriteConcernException.html" target="_self">WriteConcernException</a></td><td class="desc">Write concern error </td></tr>
<tr id="row_29_1_24_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dc9/classstorages_1_1mongo_1_1WriteResult.html" target="_self">WriteResult</a></td><td class="desc">MongoDB write operation result </td></tr>
<tr id="row_29_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_29_2_" class="arrow" onclick="toggleFolder('29_2_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="de/d6d/namespacestorages_1_1postgres.html" target="_self">postgres</a></td><td class="desc">Top namespace for uPg driver </td></tr>
<tr id="row_29_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_2_0_" class="arrow" onclick="toggleFolder('29_2_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d2/d79/namespacestorages_1_1postgres_1_1io.html" target="_self">io</a></td><td class="desc">UPg input-output </td></tr>
<tr id="row_29_2_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_29_2_0_0_" class="arrow" onclick="toggleFolder('29_2_0_0_')">►</span><span class="icona"><span class="icon">N</span></span><a class="el" href="d1/d7d/namespacestorages_1_1postgres_1_1io_1_1traits.html" target="_self">traits</a></td><td class="desc">UPg input-output traits </td></tr>
<tr id="row_29_2_0_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1b/structstorages_1_1postgres_1_1io_1_1traits_1_1AddTupleConstRef.html" target="_self">AddTupleConstRef</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d1b/structstorages_1_1postgres_1_1io_1_1traits_1_1AddTupleConstRef_3_01std_1_1tuple_3_01T_8_8_8_01_4_01_4.html" target="_self">AddTupleConstRef< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d97/structstorages_1_1postgres_1_1io_1_1traits_1_1CanClear.html" target="_self">CanClear</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dde/structstorages_1_1postgres_1_1io_1_1traits_1_1CanClear_3_01T_00_01_1_1utils_1_1void__t_3_01declt60824bd9f49ceeded02279a5a6da5a02.html" target="_self">CanClear< T, ::utils::void_t< decltype(std::declval< T >().clear())> ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dcd/structstorages_1_1postgres_1_1io_1_1traits_1_1CanReserve.html" target="_self">CanReserve</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/df0/structstorages_1_1postgres_1_1io_1_1traits_1_1CanReserve_3_01T_00_01_1_1utils_1_1void__t_3_01dec5e55a88bdbb4124e98cfbc790c692b5f.html" target="_self">CanReserve< T, ::utils::void_t< decltype(std::declval< T >().reserve(std::declval< std::size_t >()))> ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/df0/structstorages_1_1postgres_1_1io_1_1traits_1_1CanResize.html" target="_self">CanResize</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d35/structstorages_1_1postgres_1_1io_1_1traits_1_1CanResize_3_01T_00_01_1_1utils_1_1void__t_3_01declc1404e096ac7ac677138a2809b7d650b.html" target="_self">CanResize< T, ::utils::void_t< decltype(std::declval< T >().resize(std::declval< std::size_t >()))> ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d7d/structstorages_1_1postgres_1_1io_1_1traits_1_1CanUseEnumAsStrongTypedef.html" target="_self">CanUseEnumAsStrongTypedef</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d7e/structstorages_1_1postgres_1_1io_1_1traits_1_1ContainerFinalElement.html" target="_self">ContainerFinalElement</a></td><td class="desc">Detect type of multidimensional C++ container </td></tr>
<tr id="row_29_2_0_0_10_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d50/structstorages_1_1postgres_1_1io_1_1traits_1_1DimensionCount.html" target="_self">DimensionCount</a></td><td class="desc">Calculate number of dimensions in C++ container </td></tr>
<tr id="row_29_2_0_0_11_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d51/structstorages_1_1postgres_1_1io_1_1traits_1_1DimensionCount_3_01T_00_01std_1_1enable__if__t_3_071d7e09e9afd8c143c7862d835bce461.html" target="_self">DimensionCount< T, std::enable_if_t< kIsCompatibleContainer< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_12_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d3b/structstorages_1_1postgres_1_1io_1_1traits_1_1DimensionSize.html" target="_self">DimensionSize</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_13_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d8d/structstorages_1_1postgres_1_1io_1_1traits_1_1DimensionSize_3_01std_1_1array_3_01T_00_01N_01_4_01_4.html" target="_self">DimensionSize< std::array< T, N > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_14_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da4/structstorages_1_1postgres_1_1io_1_1traits_1_1ExtractionTag.html" target="_self">ExtractionTag</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_15_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/daa/structstorages_1_1postgres_1_1io_1_1traits_1_1ExtractionTag_3_01T_00_01std_1_1enable__if__t_3_01kIsRowType_3_01T_01_4_01_4_01_4.html" target="_self">ExtractionTag< T, std::enable_if_t< kIsRowType< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_16_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dfb/structstorages_1_1postgres_1_1io_1_1traits_1_1FixedDimensions.html" target="_self">FixedDimensions</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_17_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d54/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull.html" target="_self">GetSetNull</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_18_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dc2/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull_3_01_1_1utils_1_1StrongTypedef_3_01Tag_54ec7d5f0fbbd6a1d5d46c92d210b3b0.html" target="_self">GetSetNull< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_19_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/df5/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">GetSetNull< boost::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_20_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d9d/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull_3_01Null_3_01T_01_4_01_4.html" target="_self">GetSetNull< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_21_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/da0/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">GetSetNull< std::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_22_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dda/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull_3_1_1utils_1_1OptionalRef_3_01T_01_4_01_4.html" target="_self">GetSetNull<::utils::OptionalRef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_23_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d9e/structstorages_1_1postgres_1_1io_1_1traits_1_1HasFixedDimensions.html" target="_self">HasFixedDimensions</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_24_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d14/structstorages_1_1postgres_1_1io_1_1traits_1_1HasFormatter.html" target="_self">HasFormatter</a></td><td class="desc">Metafunction to detect if a type has a formatter </td></tr>
<tr id="row_29_2_0_0_25_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d3c/structstorages_1_1postgres_1_1io_1_1traits_1_1HasInputOperator.html" target="_self">HasInputOperator</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_26_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dcf/structstorages_1_1postgres_1_1io_1_1traits_1_1HasInputOperator_3_01T_00_01_1_1utils_1_1void__t_3c9fb83a307d73c1a3fb32af2e206bd9f.html" target="_self">HasInputOperator< T, ::utils::void_t< decltype(std::declval< std::istream & >() > > std::declval< T & >())> ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_27_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d26/structstorages_1_1postgres_1_1io_1_1traits_1_1HasIntrospection.html" target="_self">HasIntrospection</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_28_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d58/structstorages_1_1postgres_1_1io_1_1traits_1_1HasOutputOperator.html" target="_self">HasOutputOperator</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_29_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d9c/structstorages_1_1postgres_1_1io_1_1traits_1_1HasOutputOperator_3_01T_00_01_1_1utils_1_1void__t_b117ecc1a5bbf4d2bcea091c4cbc05a6.html" target="_self">HasOutputOperator< T, ::utils::void_t< decltype(std::declval< std::ostream & >()<< std::declval< T & >())> ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_30_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d06/structstorages_1_1postgres_1_1io_1_1traits_1_1HasParser.html" target="_self">HasParser</a></td><td class="desc">Metafunction to detect if a type has a parser </td></tr>
<tr id="row_29_2_0_0_31_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de7/structstorages_1_1postgres_1_1io_1_1traits_1_1Input.html" target="_self">Input</a></td><td class="desc">Customisation point for parsers </td></tr>
<tr id="row_29_2_0_0_32_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d00/structstorages_1_1postgres_1_1io_1_1traits_1_1Input_3_01BoundedRange_3_01T_01_4_00_01std_1_1enab424b7208999ca13b19cefdfcc08ead92.html" target="_self">Input< BoundedRange< T >, std::enable_if_t< kHasParser< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_33_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/ddc/structstorages_1_1postgres_1_1io_1_1traits_1_1Input_3_01formats_1_1json_1_1Value_01_4.html" target="_self">Input< formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_34_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/da8/structstorages_1_1postgres_1_1io_1_1traits_1_1Input_3_01Range_3_01T_01_4_00_01std_1_1enable__if_bec52f23884521e1e48a42de75e85cc3.html" target="_self">Input< Range< T >, std::enable_if_t< kHasParser< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_35_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d4e/structstorages_1_1postgres_1_1io_1_1traits_1_1Input_3_01std_1_1chrono_1_1duration_3_01Rep_00_01Period_01_4_01_4.html" target="_self">Input< std::chrono::duration< Rep, Period > ></a></td><td class="desc">Binary parser for std::chrono::duration </td></tr>
<tr id="row_29_2_0_0_36_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d09/structstorages_1_1postgres_1_1io_1_1traits_1_1Input_3_01T_00_01EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">Input< T, EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_37_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dd6/structstorages_1_1postgres_1_1io_1_1traits_1_1IO.html" target="_self">IO</a></td><td class="desc">A default deducer of parsers/formatters for a type/data format. Can be specialised for a type/format pair providing custom parsers/formatters </td></tr>
<tr id="row_29_2_0_0_38_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dff/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible.html" target="_self">IsByteaCompatible</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_39_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d15/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible_3_01std_1_1string_01_4.html" target="_self">IsByteaCompatible< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_40_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d21/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible_3_01std_1_1string__view_01_4.html" target="_self">IsByteaCompatible< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_41_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/df5/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible_3_01std_1_1vector_3_01char_00_01VectorArgs_8_8_8_01_4_01_4.html" target="_self">IsByteaCompatible< std::vector< char, VectorArgs... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_42_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dd1/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible_3_01std_1_1vector_3_01unsigned_0e701b2249e265bd7c1012526df472ac1.html" target="_self">IsByteaCompatible< std::vector< unsigned char, VectorArgs... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_43_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/ddc/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer.html" target="_self">IsCompatibleContainer</a></td><td class="desc">Mark C++ container type as supported by the driver </td></tr>
<tr id="row_29_2_0_0_44_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d31/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer_3_01std_1_1array_3_01T_00_01Size_01_4_01_4.html" target="_self">IsCompatibleContainer< std::array< T, Size > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_45_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dff/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer_3_01std_1_1set_3_01T_8_8_8_01_4_01_4.html" target="_self">IsCompatibleContainer< std::set< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_46_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dbb/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer_3_01std_1_1unordered__set_3_01T_8_8_8_01_4_01_4.html" target="_self">IsCompatibleContainer< std::unordered_set< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_47_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d51/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer_3_01std_1_1vector_3_01T_8_8_8_01_4_01_4.html" target="_self">IsCompatibleContainer< std::vector< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_48_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dac/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToArray.html" target="_self">IsMappedToArray</a></td><td class="desc">Detect if the C++ type is mapped to a Postgres array type </td></tr>
<tr id="row_29_2_0_0_49_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d4c/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg.html" target="_self">IsMappedToPg</a></td><td class="desc">Detect if the C++ type is mapped to a Postgres type </td></tr>
<tr id="row_29_2_0_0_50_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/db6/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01_1_1utils_1_1StrongTypedef_3_01Ta2146c60a3af1805efa13dbb1244d5bc2.html" target="_self">IsMappedToPg< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_51_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dce/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">IsMappedToPg< boost::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_52_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d67/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01Null_3_01T_01_4_01_4.html" target="_self">IsMappedToPg< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_53_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d35/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">IsMappedToPg< std::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_54_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d8d/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01T_00_01EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">IsMappedToPg< T, EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_55_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d73/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_1_1utils_1_1OptionalRef_3_01T_01_4_01_4.html" target="_self">IsMappedToPg<::utils::OptionalRef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_56_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d40/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToSystemType.html" target="_self">IsMappedToSystemType</a></td><td class="desc">Detect if the C++ type is mapped to a Postgres system type </td></tr>
<tr id="row_29_2_0_0_57_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dad/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToUserType.html" target="_self">IsMappedToUserType</a></td><td class="desc">Detect if the C++ type is mapped to a Postgres user type </td></tr>
<tr id="row_29_2_0_0_58_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/df0/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable.html" target="_self">IsNullable</a></td><td class="desc">Metafunction to detect nullability of a type </td></tr>
<tr id="row_29_2_0_0_59_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/db1/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">IsNullable< boost::optional< T > ></a></td><td class="desc">Nullability traits for boost::optional </td></tr>
<tr id="row_29_2_0_0_60_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d86/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_01Null_3_01T_01_4_01_4.html" target="_self">IsNullable< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_61_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d11/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">IsNullable< std::optional< T > ></a></td><td class="desc">Nullability traits for std::optional </td></tr>
<tr id="row_29_2_0_0_62_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d5a/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_1_1utils_1_1OptionalRef_3_01T_01_4_01_4.html" target="_self">IsNullable<::utils::OptionalRef< T > ></a></td><td class="desc">Nullability traits for USERVER_NAMESPACE::utils::OptionalRef </td></tr>
<tr id="row_29_2_0_0_63_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/de7/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_1_1utils_1_1StrongTypedef_3_01Tag_00_02831ee52db5b184368590a0ed7b59b3.html" target="_self">IsNullable<::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_64_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d44/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping.html" target="_self">IsSpecialMapping</a></td><td class="desc">Mark C++ mapping a special case for disambiguation </td></tr>
<tr id="row_29_2_0_0_65_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de2/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01_1_1utils_1_1StrongTypedef_3_0250bf6d0ae85f21f33a13e0f0b9a847.html" target="_self">IsSpecialMapping< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_66_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dbc/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">IsSpecialMapping< boost::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_67_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d12/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01Null_3_01T_01_4_01_4.html" target="_self">IsSpecialMapping< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_68_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d66/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">IsSpecialMapping< std::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_69_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d62/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01T_00_01EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">IsSpecialMapping< T, EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_70_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dab/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_1_1utils_1_1OptionalRef_3_01T_01_4_01_4.html" target="_self">IsSpecialMapping<::utils::OptionalRef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_71_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d22/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSuitableRowType.html" target="_self">IsSuitableRowType</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_72_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d87/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSuitableRowType_3_01_1_1utils_1_1StrongTypedef_3bc5a79dd338b2ed437a5c63dffa4c73a.html" target="_self">IsSuitableRowType< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_73_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d54/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTuple.html" target="_self">IsTuple</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_74_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d5c/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTuple_3_01std_1_1tuple_3_01T_8_8_8_01_4_01_4.html" target="_self">IsTuple< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_75_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d8c/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTupleOfRefs.html" target="_self">IsTupleOfRefs</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_76_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d75/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTupleOfRefs_3_01std_1_1tuple_3_01T_01_6_8_8_8_01_4_01_4.html" target="_self">IsTupleOfRefs< std::tuple< T &... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_77_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dec/structstorages_1_1postgres_1_1io_1_1traits_1_1Output.html" target="_self">Output</a></td><td class="desc">Customisation point for formatters </td></tr>
<tr id="row_29_2_0_0_78_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d34/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01BoundedRange_3_01T_01_4_00_01std_1_1ena16d93cd744fcfc0ddec04fe77adf68c9.html" target="_self">Output< BoundedRange< T >, std::enable_if_t< kHasFormatter< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_79_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d49/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01formats_1_1json_1_1Value_01_4.html" target="_self">Output< formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_80_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d5d/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01PlainJson_01_4.html" target="_self">Output< PlainJson ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_81_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d06/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01Range_3_01T_01_4_00_01std_1_1enable__iff06804d408fb65ee91ade7e85182dc09.html" target="_self">Output< Range< T >, std::enable_if_t< kHasFormatter< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_82_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d22/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01std_1_1chrono_1_1duration_3_01Rep_00_01Period_01_4_01_4.html" target="_self">Output< std::chrono::duration< Rep, Period > ></a></td><td class="desc">Binary formatter for std::chrono::duration </td></tr>
<tr id="row_29_2_0_0_83_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d05/structstorages_1_1postgres_1_1io_1_1traits_1_1Output_3_01T_00_01EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">Output< T, EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_84_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/df6/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory.html" target="_self">ParserBufferCategory</a></td><td class="desc">Buffer category for parser </td></tr>
<tr id="row_29_2_0_0_85_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d3f/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory_3_01BufferParser_3_01boost_1_1optional_3_01T_01_4_01_4_01_4.html" target="_self">ParserBufferCategory< BufferParser< boost::optional< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_86_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/df9/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory_3_01BufferParser_3_01std_1_1optional_3_01T_01_4_01_4_01_4.html" target="_self">ParserBufferCategory< BufferParser< std::optional< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_87_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d79/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory_3_01BufferParser_3_1_1utils_1e80293f1684d83c9b727d680e076652d.html" target="_self">ParserBufferCategory< BufferParser<::utils::StrongTypedef< Tag, T, Ops, Enable > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_88_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d86/structstorages_1_1postgres_1_1io_1_1traits_1_1RemoveTupleReferences.html" target="_self">RemoveTupleReferences</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_89_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dd1/structstorages_1_1postgres_1_1io_1_1traits_1_1RemoveTupleReferences_3_01std_1_1tuple_3_01T_8_8_8_01_4_01_4.html" target="_self">RemoveTupleReferences< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_90_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d4b/structstorages_1_1postgres_1_1io_1_1traits_1_1RowCategory.html" target="_self">RowCategory</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_91_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d9a/structstorages_1_1postgres_1_1io_1_1traits_1_1RowCategory_3_1_1utils_1_1StrongTypedef_3_01Tag_00a475f9e72ca0f19000d262961377c32b.html" target="_self">RowCategory<::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_92_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dc4/structstorages_1_1postgres_1_1io_1_1traits_1_1TupleHasFormatters.html" target="_self">TupleHasFormatters</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_93_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dc6/structstorages_1_1postgres_1_1io_1_1traits_1_1TupleHasFormatters_3_01std_1_1tuple_3_01T_8_8_8_01_4_01_4.html" target="_self">TupleHasFormatters< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_94_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/def/structstorages_1_1postgres_1_1io_1_1traits_1_1TupleHasParsers.html" target="_self">TupleHasParsers</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_95_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dbd/structstorages_1_1postgres_1_1io_1_1traits_1_1TupleHasParsers_3_01std_1_1tuple_3_01T_8_8_8_01_4_01_4.html" target="_self">TupleHasParsers< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_0_96_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/ddb/structstorages_1_1postgres_1_1io_1_1traits_1_1TypeBufferCategory.html" target="_self">TypeBufferCategory</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dc2/structstorages_1_1postgres_1_1io_1_1ArrayType.html" target="_self">ArrayType</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d7e/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kBoolean_01_4.html" target="_self">ArrayType< PredefinedOids::kBoolean ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dbf/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kBox_01_4.html" target="_self">ArrayType< PredefinedOids::kBox ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d16/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kBpchar_01_4.html" target="_self">ArrayType< PredefinedOids::kBpchar ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d67/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kBytea_01_4.html" target="_self">ArrayType< PredefinedOids::kBytea ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dc6/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kChar_01_4.html" target="_self">ArrayType< PredefinedOids::kChar ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d53/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kCid_01_4.html" target="_self">ArrayType< PredefinedOids::kCid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dcd/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kCircle_01_4.html" target="_self">ArrayType< PredefinedOids::kCircle ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da5/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kDate_01_4.html" target="_self">ArrayType< PredefinedOids::kDate ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_10_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d51/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kDateRange_01_4.html" target="_self">ArrayType< PredefinedOids::kDateRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_11_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d05/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kFloat4_01_4.html" target="_self">ArrayType< PredefinedOids::kFloat4 ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_12_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d05/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kFloat8_01_4.html" target="_self">ArrayType< PredefinedOids::kFloat8 ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_13_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dce/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInt2_01_4.html" target="_self">ArrayType< PredefinedOids::kInt2 ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_14_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d9e/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInt4_01_4.html" target="_self">ArrayType< PredefinedOids::kInt4 ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_15_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dbb/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInt4Range_01_4.html" target="_self">ArrayType< PredefinedOids::kInt4Range ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_16_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dae/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInt8_01_4.html" target="_self">ArrayType< PredefinedOids::kInt8 ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_17_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/daa/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInt8Range_01_4.html" target="_self">ArrayType< PredefinedOids::kInt8Range ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_18_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/db8/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kInterval_01_4.html" target="_self">ArrayType< PredefinedOids::kInterval ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_19_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/db6/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kJson_01_4.html" target="_self">ArrayType< PredefinedOids::kJson ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_20_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dfb/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kJsonb_01_4.html" target="_self">ArrayType< PredefinedOids::kJsonb ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_21_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d44/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kLine_01_4.html" target="_self">ArrayType< PredefinedOids::kLine ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_22_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/da9/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kLseg_01_4.html" target="_self">ArrayType< PredefinedOids::kLseg ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_23_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/da5/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kLsn_01_4.html" target="_self">ArrayType< PredefinedOids::kLsn ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_24_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d35/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kName_01_4.html" target="_self">ArrayType< PredefinedOids::kName ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_25_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d23/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kNumeric_01_4.html" target="_self">ArrayType< PredefinedOids::kNumeric ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_26_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d78/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kNumRange_01_4.html" target="_self">ArrayType< PredefinedOids::kNumRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_27_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d43/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kOid_01_4.html" target="_self">ArrayType< PredefinedOids::kOid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_28_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d05/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kPath_01_4.html" target="_self">ArrayType< PredefinedOids::kPath ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_29_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d49/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kPoint_01_4.html" target="_self">ArrayType< PredefinedOids::kPoint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_30_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d64/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kPolygon_01_4.html" target="_self">ArrayType< PredefinedOids::kPolygon ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_31_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/de6/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kRecord_01_4.html" target="_self">ArrayType< PredefinedOids::kRecord ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_32_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d0e/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kText_01_4.html" target="_self">ArrayType< PredefinedOids::kText ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_33_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d4f/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTid_01_4.html" target="_self">ArrayType< PredefinedOids::kTid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_34_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d46/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTime_01_4.html" target="_self">ArrayType< PredefinedOids::kTime ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_35_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d71/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTimestamp_01_4.html" target="_self">ArrayType< PredefinedOids::kTimestamp ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_36_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/de5/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTimestampRange_01_4.html" target="_self">ArrayType< PredefinedOids::kTimestampRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_37_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d4f/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTimestamptz_01_4.html" target="_self">ArrayType< PredefinedOids::kTimestamptz ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_38_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d29/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kTimestamptzRange_01_4.html" target="_self">ArrayType< PredefinedOids::kTimestamptzRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_39_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d0c/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kUuid_01_4.html" target="_self">ArrayType< PredefinedOids::kUuid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_40_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d16/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kVarchar_01_4.html" target="_self">ArrayType< PredefinedOids::kVarchar ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_41_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dd1/structstorages_1_1postgres_1_1io_1_1ArrayType_3_01PredefinedOids_1_1kXid_01_4.html" target="_self">ArrayType< PredefinedOids::kXid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_42_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dd6/structstorages_1_1postgres_1_1io_1_1BufferCategoryHash.html" target="_self">BufferCategoryHash</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_43_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dc4/structstorages_1_1postgres_1_1io_1_1BufferFormatter.html" target="_self">BufferFormatter</a></td><td class="desc">Primary template for Postgre buffer formatter Specialisations should provide call operators that write to a buffer </td></tr>
<tr id="row_29_2_0_44_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dcf/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01_1_1utils_1_1StrongTypedef_3_01Tag_00_01b7994439f3de4e1ac797fe71c4c0538d.html" target="_self">BufferFormatter< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_45_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dcd/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Bigint_01_4.html" target="_self">BufferFormatter< Bigint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_46_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d7d/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01bool_01_4.html" target="_self">BufferFormatter< bool ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_47_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/def/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01boost_1_1optional_3_01T_01_4_00_01std_1_c72a17c1aed54848028043d728a5604f.html" target="_self">BufferFormatter< boost::optional< T >, std::enable_if_t< traits::kHasFormatter< T > > ></a></td><td class="desc">Formatter specialization for boost::optional </td></tr>
<tr id="row_29_2_0_48_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d0c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">BufferFormatter< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_49_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d3a/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01char_01_4.html" target="_self">BufferFormatter< char ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_50_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d76/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01char_0fN_0e_4.html" target="_self">BufferFormatter< char[N]></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_51_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/ddd/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01const_01char_01_5_01_4.html" target="_self">BufferFormatter< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_52_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d75/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Date_01_4.html" target="_self">BufferFormatter< Date ></a></td><td class="desc">Binary formatter for <a class="el" href="dd/d34/classutils_1_1datetime_1_1Date.html" title="Date in format YYYY-MM-DD, std::chrono::year_month_day like type.">utils::datetime::Date</a> </td></tr>
<tr id="row_29_2_0_53_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d3c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">BufferFormatter< decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_54_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/da1/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01double_01_4.html" target="_self">BufferFormatter< double ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_55_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d57/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01float_01_4.html" target="_self">BufferFormatter< float ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_56_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d2d/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Integer_01_4.html" target="_self">BufferFormatter< Integer ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_57_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dc1/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01MultiPrecision_3_01Precision_01_4_01_4.html" target="_self">BufferFormatter< MultiPrecision< Precision > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_58_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d3a/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Null_3_01T_01_4_01_4.html" target="_self">BufferFormatter< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_59_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d13/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01postgres_1_1ByteaWrapper_3_01ByteContain35b56704448f057db4a2651ad00f5a13.html" target="_self">BufferFormatter< postgres::ByteaWrapper< ByteContainer >, traits::EnableIfByteaCompatible< std::decay_t< ByteContainer > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_60_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d4d/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Smallint_01_4.html" target="_self">BufferFormatter< Smallint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_61_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d94/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1chrono_1_1time__point_3_01ClockType_00_01Duration_01_4_01_4.html" target="_self">BufferFormatter< std::chrono::time_point< ClockType, Duration > ></a></td><td class="desc">Binary formatter for std::chrono::time_point </td></tr>
<tr id="row_29_2_0_62_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d4c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1optional_3_01T_01_4_00_01std_1_1eb467875aee52b6f201e9e8e272f5f36e.html" target="_self">BufferFormatter< std::optional< T >, std::enable_if_t< traits::kHasFormatter< T > > ></a></td><td class="desc">Formatter specialization for std::optional </td></tr>
<tr id="row_29_2_0_63_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/da7/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1string_01_4.html" target="_self">BufferFormatter< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_64_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d41/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1string__view_01_4.html" target="_self">BufferFormatter< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_65_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d97/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_1_1utils_1_1datetime_1_1TimeOfDay_3_01Duration_01_4_01_4.html" target="_self">BufferFormatter<::utils::datetime::TimeOfDay< Duration > ></a></td><td class="desc">Binary formatter for <a class="el" href="d8/d0d/classutils_1_1datetime_1_1TimeOfDay.html" title="A simple implementation of a "time since midnight" datatype.">utils::datetime::TimeOfDay</a> mapped to postgres time This datatype is time-zone agnostic, it should't be mixed with timetz type or sudden TZ adjustments will be applied </td></tr>
<tr id="row_29_2_0_66_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d78/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_1_1utils_1_1OptionalRef_3_01T_01_4_00_01st8ec8a2f0324460c3c9ff78ecef90ebc0.html" target="_self">BufferFormatter<::utils::OptionalRef< T >, std::enable_if_t< traits::kHasFormatter< T > > ></a></td><td class="desc">Formatter specialization for <a class="el" href="d8/d70/classutils_1_1OptionalRef.html" title="Class that behaves as a nullable reference. Main difference from the pointer - value comparison of po...">utils::OptionalRef</a> </td></tr>
<tr id="row_29_2_0_67_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d16/structstorages_1_1postgres_1_1io_1_1BufferParser.html" target="_self">BufferParser</a></td><td class="desc">Primary template for Postgre buffer parser. Specialisations should provide call operators that parse <a class="el" href="d5/d3e/structstorages_1_1postgres_1_1io_1_1FieldBuffer.html">FieldBuffer</a> </td></tr>
<tr id="row_29_2_0_68_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d80/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01_1_1utils_1_1StrongTypedef_3_01Tag_00_01T_00_01Ops_00_01Enable_01_4_01_4.html" target="_self">BufferParser< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_69_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d17/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Bigint_01_4.html" target="_self">BufferParser< Bigint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_70_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/de8/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01bool_01_4.html" target="_self">BufferParser< bool ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_71_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d49/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01boost_1_1optional_3_01T_01_4_00_01std_1_1en5d6cc1f681ac7ae313741632cfc5ea7d.html" target="_self">BufferParser< boost::optional< T >, std::enable_if_t< traits::kHasParser< T > > ></a></td><td class="desc">Parser specialization for boost::optional </td></tr>
<tr id="row_29_2_0_72_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d7d/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">BufferParser< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_73_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dfc/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01char_01_4.html" target="_self">BufferParser< char ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_74_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d58/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Date_01_4.html" target="_self">BufferParser< Date ></a></td><td class="desc">Binary parser for <a class="el" href="dd/d34/classutils_1_1datetime_1_1Date.html" title="Date in format YYYY-MM-DD, std::chrono::year_month_day like type.">utils::datetime::Date</a> </td></tr>
<tr id="row_29_2_0_75_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d90/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">BufferParser< decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_76_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dca/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01double_01_4.html" target="_self">BufferParser< double ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_77_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d43/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01float_01_4.html" target="_self">BufferParser< float ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_78_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d84/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Integer_01_4.html" target="_self">BufferParser< Integer ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_79_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d87/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01MultiPrecision_3_01Precision_01_4_01_4.html" target="_self">BufferParser< MultiPrecision< Precision > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_80_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d1a/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01postgres_1_1ByteaWrapper_3_01ByteContainer_1224ed46188ef26d87ca48a3c8cd534d.html" target="_self">BufferParser< postgres::ByteaWrapper< ByteContainer >, traits::EnableIfByteaCompatible< std::decay_t< ByteContainer > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_81_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/deb/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Smallint_01_4.html" target="_self">BufferParser< Smallint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_82_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d5c/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1chrono_1_1time__point_3_01ClockType_00_01Duration_01_4_01_4.html" target="_self">BufferParser< std::chrono::time_point< ClockType, Duration > ></a></td><td class="desc">Binary parser for std::chrono::time_point </td></tr>
<tr id="row_29_2_0_83_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dc5/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1optional_3_01T_01_4_00_01std_1_1enabeb3e350cb875d628af69c5ca14509569.html" target="_self">BufferParser< std::optional< T >, std::enable_if_t< traits::kHasParser< T > > ></a></td><td class="desc">Parser specialization for std::optional </td></tr>
<tr id="row_29_2_0_84_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d59/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1string_01_4.html" target="_self">BufferParser< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_85_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dbe/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1string__view_01_4.html" target="_self">BufferParser< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_86_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dc5/structstorages_1_1postgres_1_1io_1_1BufferParser_3_1_1utils_1_1datetime_1_1TimeOfDay_3_01Duration_01_4_01_4.html" target="_self">BufferParser<::utils::datetime::TimeOfDay< Duration > ></a></td><td class="desc">Binary parser for <a class="el" href="d8/d0d/classutils_1_1datetime_1_1TimeOfDay.html" title="A simple implementation of a "time since midnight" datatype.">utils::datetime::TimeOfDay</a> mapped to postgres time </td></tr>
<tr id="row_29_2_0_87_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dd8/structstorages_1_1postgres_1_1io_1_1CppToPg.html" target="_self">CppToPg</a></td><td class="desc">Detect mapping of a C++ type to Postgres type </td></tr>
<tr id="row_29_2_0_88_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dbd/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01boost_1_1optional_3_01T_01_4_00_01std_1_1enable_2b30e5425e0d245d32e4dbbc754143a6.html" target="_self">CppToPg< boost::optional< T >, std::enable_if_t< traits::kIsMappedToPg< T > > ></a></td><td class="desc">Pg mapping specialization for boost::optional </td></tr>
<tr id="row_29_2_0_89_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/da2/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01Null_3_01T_01_4_01_4.html" target="_self">CppToPg< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_90_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/de4/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01std_1_1optional_3_01T_01_4_00_01std_1_1enable__i59ff6bda57ba9251399a275f80eaeac9.html" target="_self">CppToPg< std::optional< T >, std::enable_if_t< traits::kIsMappedToPg< T > > ></a></td><td class="desc">Pg mapping specialization for std::optional </td></tr>
<tr id="row_29_2_0_91_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d55/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01T_00_01std_1_1enable__if__t_3_9traits_1_1kIsSpec77621de19dbb21b0ba95d29025398217.html" target="_self">CppToPg< T, std::enable_if_t<!traits::kIsSpecialMapping< T > &&traits::kIsMappedToPg< T > &&!traits::kIsMappedToArray< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_92_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d58/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01T_00_01traits_1_1EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">CppToPg< T, traits::EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_93_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d4a/structstorages_1_1postgres_1_1io_1_1CppToPg_3_1_1utils_1_1OptionalRef_3_01T_01_4_00_01std_1_1ena1c52f6b356857244deb955b8f9fb5498.html" target="_self">CppToPg<::utils::OptionalRef< T >, std::enable_if_t< traits::kIsMappedToPg< T > > ></a></td><td class="desc">Pg mapping specialization for USERVER_NAMESPACE::utils::OptionalRef </td></tr>
<tr id="row_29_2_0_94_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d4b/structstorages_1_1postgres_1_1io_1_1CppToPg_3_1_1utils_1_1StrongTypedef_3_01Tag_00_01T_00_01Ops_c955596cf331083066e4b47902f5e080.html" target="_self">CppToPg<::utils::StrongTypedef< Tag, T, Ops, Enable >, std::enable_if_t<!traits::kIsStrongTypedefDirectlyMapped< Tag, T, Ops, Enable > &&traits::kIsMappedToPg< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_95_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d10/structstorages_1_1postgres_1_1io_1_1CppToSystemPg.html" target="_self">CppToSystemPg</a></td><td class="desc">Primary template for declaring mapping to a PostgreSQL system type </td></tr>
<tr id="row_29_2_0_96_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d5a/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01Bigint_01_4.html" target="_self">CppToSystemPg< Bigint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_97_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d84/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01BigintRange_01_4.html" target="_self">CppToSystemPg< BigintRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_98_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d9f/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01bool_01_4.html" target="_self">CppToSystemPg< bool ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_99_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d02/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">CppToSystemPg< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_100_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d07/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01BoundedBigintRange_01_4.html" target="_self">CppToSystemPg< BoundedBigintRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_101_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/da4/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01BoundedIntegerRange_01_4.html" target="_self">CppToSystemPg< BoundedIntegerRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_102_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/da7/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01char_01_4.html" target="_self">CppToSystemPg< char ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_103_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d7f/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01char_0fN_0e_4.html" target="_self">CppToSystemPg< char[N]></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_104_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d13/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01const_01char_01_5_01_4.html" target="_self">CppToSystemPg< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_105_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d71/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01Date_01_4.html" target="_self">CppToSystemPg< Date ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_106_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dca/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">CppToSystemPg< decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_107_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dcb/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01double_01_4.html" target="_self">CppToSystemPg< double ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_108_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d73/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01float_01_4.html" target="_self">CppToSystemPg< float ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_109_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d83/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01formats_1_1json_1_1Value_01_4.html" target="_self">CppToSystemPg< formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_110_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d9e/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01Integer_01_4.html" target="_self">CppToSystemPg< Integer ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_111_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d90/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01IntegerRange_01_4.html" target="_self">CppToSystemPg< IntegerRange ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_112_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d9b/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01MultiPrecision_3_01Precision_01_4_01_4.html" target="_self">CppToSystemPg< MultiPrecision< Precision > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_113_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d07/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01PlainJson_01_4.html" target="_self">CppToSystemPg< PlainJson ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_114_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d7e/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01postgres_1_1ByteaWrapper_3_01ByteContainer_01_4_01_4.html" target="_self">CppToSystemPg< postgres::ByteaWrapper< ByteContainer > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_115_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/df1/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01Smallint_01_4.html" target="_self">CppToSystemPg< Smallint ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_116_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dd3/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01std_1_1chrono_1_1duration_3_01Rep_00_01Period_01_4_01_4.html" target="_self">CppToSystemPg< std::chrono::duration< Rep, Period > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_117_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d6c/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01std_1_1chrono_1_1time__point_3_01ClockType_00_01Duration_01_4_01_4.html" target="_self">CppToSystemPg< std::chrono::time_point< ClockType, Duration > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_118_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/da1/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01std_1_1string_01_4.html" target="_self">CppToSystemPg< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_119_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/df4/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01std_1_1string__view_01_4.html" target="_self">CppToSystemPg< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_120_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/db7/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_01TimePointTz_01_4.html" target="_self">CppToSystemPg< TimePointTz ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_121_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d54/structstorages_1_1postgres_1_1io_1_1CppToSystemPg_3_1_1utils_1_1datetime_1_1TimeOfDay_3_01Duration_01_4_01_4.html" target="_self">CppToSystemPg<::utils::datetime::TimeOfDay< Duration > ></a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_122_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d28/structstorages_1_1postgres_1_1io_1_1CppToUserPg.html" target="_self">CppToUserPg</a></td><td class="desc">Primary template for declaring mapping to a PostgreSQL user type </td></tr>
<tr id="row_29_2_0_123_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dcf/structstorages_1_1postgres_1_1io_1_1EnumMappingBase.html" target="_self">EnumMappingBase</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_124_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d3e/structstorages_1_1postgres_1_1io_1_1FieldBuffer.html" target="_self">FieldBuffer</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_125_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/da6/structstorages_1_1postgres_1_1io_1_1PgToCpp.html" target="_self">PgToCpp</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_126_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dce/structstorages_1_1postgres_1_1io_1_1RowType.html" target="_self">RowType</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_127_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dc2/structstorages_1_1postgres_1_1io_1_1TransformFormatter.html" target="_self">TransformFormatter</a></td><td class="desc"></td></tr>
<tr id="row_29_2_0_128_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d94/structstorages_1_1postgres_1_1io_1_1TransformParser.html" target="_self">TransformParser</a></td><td class="desc"></td></tr>
<tr id="row_29_2_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_2_1_" class="arrow" onclick="toggleFolder('29_2_1_')">►</span><span class="icona"><span class="icon">N</span></span><b>utils</b></td><td class="desc"></td></tr>
<tr id="row_29_2_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d4e/structstorages_1_1postgres_1_1utils_1_1StringViewHash.html" target="_self">StringViewHash</a></td><td class="desc"></td></tr>
<tr id="row_29_2_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d85/classstorages_1_1postgres_1_1AccessRuleViolation.html" target="_self">AccessRuleViolation</a></td><td class="desc"></td></tr>
<tr id="row_29_2_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d0c/classstorages_1_1postgres_1_1AdminShutdown.html" target="_self">AdminShutdown</a></td><td class="desc"></td></tr>
<tr id="row_29_2_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d03/classstorages_1_1postgres_1_1AlreadyInTransaction.html" target="_self">AlreadyInTransaction</a></td><td class="desc"></td></tr>
<tr id="row_29_2_5_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d1b/classstorages_1_1postgres_1_1ArrayError.html" target="_self">ArrayError</a></td><td class="desc">Base error when working with array types </td></tr>
<tr id="row_29_2_6_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d0d/classstorages_1_1postgres_1_1BoundedRange.html" target="_self">BoundedRange</a></td><td class="desc"></td></tr>
<tr id="row_29_2_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d44/classstorages_1_1postgres_1_1BoundedRangeError.html" target="_self">BoundedRangeError</a></td><td class="desc">PostgreSQL range type has at least one end unbound </td></tr>
<tr id="row_29_2_8_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dd5/structstorages_1_1postgres_1_1ByteaWrapper.html" target="_self">ByteaWrapper</a></td><td class="desc">Wrapper for binary data container </td></tr>
<tr id="row_29_2_9_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d7a/classstorages_1_1postgres_1_1CannotConnectNow.html" target="_self">CannotConnectNow</a></td><td class="desc"></td></tr>
<tr id="row_29_2_10_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d0b/classstorages_1_1postgres_1_1CardinalityViolation.html" target="_self">CardinalityViolation</a></td><td class="desc"></td></tr>
<tr id="row_29_2_11_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d9a/classstorages_1_1postgres_1_1CheckViolation.html" target="_self">CheckViolation</a></td><td class="desc"></td></tr>
<tr id="row_29_2_12_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d69/classstorages_1_1postgres_1_1Cluster.html" target="_self">Cluster</a></td><td class="desc">Interface for executing queries on a cluster of PostgreSQL servers </td></tr>
<tr id="row_29_2_13_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/df6/classstorages_1_1postgres_1_1ClusterError.html" target="_self">ClusterError</a></td><td class="desc"></td></tr>
<tr id="row_29_2_14_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/da1/structstorages_1_1postgres_1_1ClusterHostTypeHash.html" target="_self">ClusterHostTypeHash</a></td><td class="desc"></td></tr>
<tr id="row_29_2_15_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d83/structstorages_1_1postgres_1_1ClusterSettings.html" target="_self">ClusterSettings</a></td><td class="desc">Settings for <a class="el" href="dd/d69/classstorages_1_1postgres_1_1Cluster.html" title="Interface for executing queries on a cluster of PostgreSQL servers.">storages::postgres::Cluster</a> </td></tr>
<tr id="row_29_2_16_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d39/structstorages_1_1postgres_1_1ClusterStatistics.html" target="_self">ClusterStatistics</a></td><td class="desc"><a class="el" href="dd/d69/classstorages_1_1postgres_1_1Cluster.html" title="Interface for executing queries on a cluster of PostgreSQL servers.">Cluster</a> statistics storage </td></tr>
<tr id="row_29_2_17_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d0d/classstorages_1_1postgres_1_1ClusterUnavailable.html" target="_self">ClusterUnavailable</a></td><td class="desc"></td></tr>
<tr id="row_29_2_18_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dcb/structstorages_1_1postgres_1_1CommandControl.html" target="_self">CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_29_2_19_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d36/classstorages_1_1postgres_1_1CommandError.html" target="_self">CommandError</a></td><td class="desc"><a class="el" href="df/d3d/classstorages_1_1postgres_1_1Error.html" title="Base class for all exceptions that may be thrown by the driver.">Error</a> when invoking a libpq function </td></tr>
<tr id="row_29_2_20_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d9b/structstorages_1_1postgres_1_1CompositeFieldDef.html" target="_self">CompositeFieldDef</a></td><td class="desc">Description of a field in a user-defined composite type, for type checking </td></tr>
<tr id="row_29_2_21_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/dcf/classstorages_1_1postgres_1_1CompositeMemberTypeMismatch.html" target="_self">CompositeMemberTypeMismatch</a></td><td class="desc">PostgreSQL composite type has different member type that the C++ mapping suggests </td></tr>
<tr id="row_29_2_22_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dee/classstorages_1_1postgres_1_1CompositeSizeMismatch.html" target="_self">CompositeSizeMismatch</a></td><td class="desc">PostgreSQL composite type has different count of members from the C++ counterpart </td></tr>
<tr id="row_29_2_23_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d7c/classstorages_1_1postgres_1_1CompositeTypeDescription.html" target="_self">CompositeTypeDescription</a></td><td class="desc">PostgreSQL composite type description </td></tr>
<tr id="row_29_2_24_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d5f/classstorages_1_1postgres_1_1ConfigurationFileError.html" target="_self">ConfigurationFileError</a></td><td class="desc"></td></tr>
<tr id="row_29_2_25_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de2/classstorages_1_1postgres_1_1ConnectionBusy.html" target="_self">ConnectionBusy</a></td><td class="desc">An attempt to make a query to server was made while there is another query in flight </td></tr>
<tr id="row_29_2_26_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dea/classstorages_1_1postgres_1_1ConnectionError.html" target="_self">ConnectionError</a></td><td class="desc"></td></tr>
<tr id="row_29_2_27_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d90/classstorages_1_1postgres_1_1ConnectionFailed.html" target="_self">ConnectionFailed</a></td><td class="desc">Exception is thrown when a single connection fails to connect </td></tr>
<tr id="row_29_2_28_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d18/classstorages_1_1postgres_1_1ConnectionInterrupted.html" target="_self">ConnectionInterrupted</a></td><td class="desc">A network operation was interrupted by task cancellation </td></tr>
<tr id="row_29_2_29_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/dbf/structstorages_1_1postgres_1_1ConnectionSettings.html" target="_self">ConnectionSettings</a></td><td class="desc"></td></tr>
<tr id="row_29_2_30_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d9a/structstorages_1_1postgres_1_1ConnectionStatistics.html" target="_self">ConnectionStatistics</a></td><td class="desc">Template connection statistics storage </td></tr>
<tr id="row_29_2_31_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/db0/classstorages_1_1postgres_1_1ConnectionTimeoutError.html" target="_self">ConnectionTimeoutError</a></td><td class="desc">A network operation on a connection has timed out </td></tr>
<tr id="row_29_2_32_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/daa/classstorages_1_1postgres_1_1ConstFieldIterator.html" target="_self">ConstFieldIterator</a></td><td class="desc">Iterator over fields in a result set's row </td></tr>
<tr id="row_29_2_33_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d7b/classstorages_1_1postgres_1_1ConstRowIterator.html" target="_self">ConstRowIterator</a></td><td class="desc"></td></tr>
<tr id="row_29_2_34_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d47/classstorages_1_1postgres_1_1CrashShutdown.html" target="_self">CrashShutdown</a></td><td class="desc"></td></tr>
<tr id="row_29_2_35_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/dbd/classstorages_1_1postgres_1_1Database.html" target="_self">Database</a></td><td class="desc">Object for accessing PostgreSQL database instance (sharded or not) </td></tr>
<tr id="row_29_2_36_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d00/classstorages_1_1postgres_1_1DatabaseDropped.html" target="_self">DatabaseDropped</a></td><td class="desc"></td></tr>
<tr id="row_29_2_37_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d3b/classstorages_1_1postgres_1_1DataException.html" target="_self">DataException</a></td><td class="desc">Base class for data exceptions Doc: <a href="https://www.postgresql.org/docs/12/static/errcodes-appendix.html">https://www.postgresql.org/docs/12/static/errcodes-appendix.html</a> </td></tr>
<tr id="row_29_2_38_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_29_2_38_" class="arrow" onclick="toggleFolder('29_2_38_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d73/structstorages_1_1postgres_1_1DBTypeDescription.html" target="_self">DBTypeDescription</a></td><td class="desc">Description of a PostgreSQL type. The structure is selected from the pg_catalog.pg_type table (not all, only appropriate fields). See <a href="https://www.postgresql.org/docs/12/catalog-pg-type.html">https://www.postgresql.org/docs/12/catalog-pg-type.html</a> </td></tr>
<tr id="row_29_2_38_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d0e/structstorages_1_1postgres_1_1DBTypeDescription_1_1NameHash.html" target="_self">NameHash</a></td><td class="desc"></td></tr>
<tr id="row_29_2_38_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d8d/structstorages_1_1postgres_1_1DBTypeDescription_1_1NamesEqual.html" target="_self">NamesEqual</a></td><td class="desc"></td></tr>
<tr id="row_29_2_38_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d31/structstorages_1_1postgres_1_1DBTypeDescription_1_1TypeCategoryHash.html" target="_self">TypeCategoryHash</a></td><td class="desc"></td></tr>
<tr id="row_29_2_39_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d55/structstorages_1_1postgres_1_1DBTypeName.html" target="_self">DBTypeName</a></td><td class="desc">Identity for a PostgreSQL type name </td></tr>
<tr id="row_29_2_40_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d24/classstorages_1_1postgres_1_1DependentPrivilegeDescriptorsStillExist.html" target="_self">DependentPrivilegeDescriptorsStillExist</a></td><td class="desc"></td></tr>
<tr id="row_29_2_41_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d42/classstorages_1_1postgres_1_1DiagnosticsException.html" target="_self">DiagnosticsException</a></td><td class="desc"></td></tr>
<tr id="row_29_2_42_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d98/classstorages_1_1postgres_1_1DimensionMismatch.html" target="_self">DimensionMismatch</a></td><td class="desc">Array received from postgres has different dimensions from those of C++ container </td></tr>
<tr id="row_29_2_43_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d55/classstorages_1_1postgres_1_1DistLockComponentBase.html" target="_self">DistLockComponentBase</a></td><td class="desc">Base class for postgres-based distlock worker components </td></tr>
<tr id="row_29_2_44_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d02/classstorages_1_1postgres_1_1DistLockStrategy.html" target="_self">DistLockStrategy</a></td><td class="desc">Postgres distributed locking strategy </td></tr>
<tr id="row_29_2_45_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/dff/structstorages_1_1postgres_1_1DsnOptions.html" target="_self">DsnOptions</a></td><td class="desc"></td></tr>
<tr id="row_29_2_46_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/db6/classstorages_1_1postgres_1_1DuplicatePreparedStatement.html" target="_self">DuplicatePreparedStatement</a></td><td class="desc"></td></tr>
<tr id="row_29_2_47_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d70/classstorages_1_1postgres_1_1EnumerationError.html" target="_self">EnumerationError</a></td><td class="desc"></td></tr>