forked from userver-framework/userver-framework.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhierarchy.html
1629 lines (1627 loc) · 528 KB
/
hierarchy.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 Hierarchy</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 Hierarchy</div></div>
</div><!--header-->
<div class="contents">
<div class="textblock">
<p><a href="inherits.html">Go to the graphical class hierarchy</a></p>
This inheritance list is sorted roughly, but not completely, alphabetically:</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><span onclick="javascript:toggleLevel(7);">7</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;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">dynamic_config::AdditionalKeysToken</a></td><td class="desc">Defines the scope where DynamicConfigClientUpdater requests additional configs </td></tr>
<tr id="row_1_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::AddTupleConstRef< T ></a></td><td class="desc"></td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::AddTupleConstRef< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_3_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::operations::Aggregate</a></td><td class="desc">Runs an aggregation pipeline </td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d33/structutils_1_1statistics_1_1AggregatedValues.html" target="_self">utils::statistics::AggregatedValues< Length ></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">C</span></span><b>service_client.AiohttpClient</b></td><td class="desc"></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="d9/d80/classpytest__userver_1_1client_1_1AiohttpClient.html" target="_self">pytest_userver.client.AiohttpClient</a></td><td class="desc"></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="da/d92/classpytest__userver_1_1client_1_1AiohttpClientMonitor.html" target="_self">pytest_userver.client.AiohttpClientMonitor</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::options::AllowPartialResults</a></td><td class="desc">Suppresses errors on querying a sharded collection with unavailable shards </td></tr>
<tr id="row_7_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d49/classutils_1_1AnyMovable.html" target="_self">utils::AnyMovable</a></td><td class="desc">Replacement for <code>std::any</code> that is not copyable. It allows to store non-copyable and even non-movable types </td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;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">formats::json::StringBuilder::ArrayGuard</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">C</span></span><b>concurrent::impl::AsyncEventSourceBase</b></td><td class="desc"></td></tr>
<tr id="row_9_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_9_0_" class="arrow" onclick="toggleFolder('9_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d11/classconcurrent_1_1AsyncEventSource.html" target="_self">concurrent::AsyncEventSource< Args... ></a></td><td class="desc"></td></tr>
<tr id="row_9_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="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel< const std::shared_ptr< const dynamic_config::DocsMap > & ></a></td><td class="desc"></td></tr>
<tr id="row_9_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="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel< const std::shared_ptr< const MongoCacheTraits::DataType > & ></a></td><td class="desc"></td></tr>
<tr id="row_9_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_9_0_2_" class="arrow" onclick="toggleFolder('9_0_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel<></a></td><td class="desc"></td></tr>
<tr id="row_9_0_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="d2/d89/classconcurrent_1_1ConflatedEventChannel.html" target="_self">concurrent::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_9_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="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel< const std::shared_ptr< const T > & ></a></td><td class="desc"></td></tr>
<tr id="row_9_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="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel< int ></a></td><td class="desc"></td></tr>
<tr id="row_9_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="d6/d38/classconcurrent_1_1AsyncEventChannel.html" target="_self">concurrent::AsyncEventChannel< Args ></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="dc/d11/classconcurrent_1_1AsyncEventSource.html" target="_self">concurrent::AsyncEventSource< Args ></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_10_" class="even"><td class="entry"><span style="width:16px;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">concurrent::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_11_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/df3/classutils_1_1AtomicFlags.html" target="_self">utils::AtomicFlags< Enum ></a></td><td class="desc">Wrapper to extend enum with atomic flags interface </td></tr>
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;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">server::handlers::auth::AuthCheckerBase</a></td><td class="desc"></td></tr>
<tr id="row_13_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::auth::AuthCheckerFactoryBase</a></td><td class="desc">Base class for all the authorization factory checkers </td></tr>
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;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">server::handlers::auth::AuthCheckerSettings</a></td><td class="desc"></td></tr>
<tr id="row_15_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::auth::AuthCheckResult</a></td><td class="desc"></td></tr>
<tr id="row_16_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d08/structurabbitmq_1_1AuthSettings.html" target="_self">urabbitmq::AuthSettings</a></td><td class="desc"></td></tr>
<tr id="row_17_" class="odd"><td class="entry"><span style="width:16px;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">concurrent::BackgroundTaskStorage</a></td><td class="desc"></td></tr>
<tr id="row_18_" class="even"><td class="entry"><span style="width:16px;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">concurrent::BackgroundTaskStorageCore</a></td><td class="desc"></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">C</span></span><b>std::bad_any_cast</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="d2/d01/classutils_1_1BadAnyMovableCast.html" target="_self">utils::BadAnyMovableCast</a></td><td class="desc">The exception that is thrown when <code>AnyCast</code> fails </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">C</span></span><b>Base</b></td><td class="desc"></td></tr>
<tr id="row_20_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_20_0_" class="arrow" onclick="toggleFolder('20_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d34/classstorages_1_1postgres_1_1ServerError.html" target="_self">storages::postgres::ServerError< Base ></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> that was reported by PosgtreSQL server Contains the message sent by the server. Templated class because the errors can be both runtime and logic </td></tr>
<tr id="row_20_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="da/d85/classstorages_1_1postgres_1_1AccessRuleViolation.html" target="_self">storages::postgres::AccessRuleViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_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="de/d0b/classstorages_1_1postgres_1_1CardinalityViolation.html" target="_self">storages::postgres::CardinalityViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_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="dd/d5f/classstorages_1_1postgres_1_1ConfigurationFileError.html" target="_self">storages::postgres::ConfigurationFileError</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d2/d3b/classstorages_1_1postgres_1_1DataException.html" target="_self">storages::postgres::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_20_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="d7/d24/classstorages_1_1postgres_1_1DependentPrivilegeDescriptorsStillExist.html" target="_self">storages::postgres::DependentPrivilegeDescriptorsStillExist</a></td><td class="desc"></td></tr>
<tr id="row_20_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="da/d42/classstorages_1_1postgres_1_1DiagnosticsException.html" target="_self">storages::postgres::DiagnosticsException</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d4/db6/classstorages_1_1postgres_1_1DuplicatePreparedStatement.html" target="_self">storages::postgres::DuplicatePreparedStatement</a></td><td class="desc"></td></tr>
<tr id="row_20_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="dd/d8e/classstorages_1_1postgres_1_1ExternalRoutineException.html" target="_self">storages::postgres::ExternalRoutineException</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d3/d4a/classstorages_1_1postgres_1_1ExternalRoutineInvocationException.html" target="_self">storages::postgres::ExternalRoutineInvocationException</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d4/db1/classstorages_1_1postgres_1_1FdwError.html" target="_self">storages::postgres::FdwError</a></td><td class="desc"></td></tr>
<tr id="row_20_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="db/d84/classstorages_1_1postgres_1_1FeatureNotSupported.html" target="_self">storages::postgres::FeatureNotSupported</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d7/d54/classstorages_1_1postgres_1_1InsufficientResources.html" target="_self">storages::postgres::InsufficientResources</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_20_0_12_" class="arrow" onclick="toggleFolder('20_0_12_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d8f/classstorages_1_1postgres_1_1IntegrityConstraintViolation.html" target="_self">storages::postgres::IntegrityConstraintViolation</a></td><td class="desc">Base class for integrity constraint violation errors. 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_20_0_12_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/d9a/classstorages_1_1postgres_1_1CheckViolation.html" target="_self">storages::postgres::CheckViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="d4/d04/classstorages_1_1postgres_1_1ExclusionViolation.html" target="_self">storages::postgres::ExclusionViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="dc/d35/classstorages_1_1postgres_1_1ForeignKeyViolation.html" target="_self">storages::postgres::ForeignKeyViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="d4/d05/classstorages_1_1postgres_1_1NotNullViolation.html" target="_self">storages::postgres::NotNullViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="d9/daa/classstorages_1_1postgres_1_1RestrictViolation.html" target="_self">storages::postgres::RestrictViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="dd/da4/classstorages_1_1postgres_1_1TriggeredDataChangeViolation.html" target="_self">storages::postgres::TriggeredDataChangeViolation</a></td><td class="desc">Class 27 - Triggered Data Change Violation </td></tr>
<tr id="row_20_0_12_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="d6/d84/classstorages_1_1postgres_1_1UniqueViolation.html" target="_self">storages::postgres::UniqueViolation</a></td><td class="desc"></td></tr>
<tr id="row_20_0_12_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="d3/d04/classstorages_1_1postgres_1_1WithCheckOptionViolation.html" target="_self">storages::postgres::WithCheckOptionViolation</a></td><td class="desc">Class 44 - WITH CHECK OPTION Violation </td></tr>
<tr id="row_20_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="df/dc0/classstorages_1_1postgres_1_1InternalServerError.html" target="_self">storages::postgres::InternalServerError</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d1/df6/classstorages_1_1postgres_1_1InvalidAuthorizationSpecification.html" target="_self">storages::postgres::InvalidAuthorizationSpecification</a></td><td class="desc"></td></tr>
<tr id="row_20_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="da/d66/classstorages_1_1postgres_1_1InvalidCursorState.html" target="_self">storages::postgres::InvalidCursorState</a></td><td class="desc"></td></tr>
<tr id="row_20_0_16_" 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/d3b/classstorages_1_1postgres_1_1InvalidGrantor.html" target="_self">storages::postgres::InvalidGrantor</a></td><td class="desc"></td></tr>
<tr id="row_20_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="d4/d47/classstorages_1_1postgres_1_1InvalidObjectName.html" target="_self">storages::postgres::InvalidObjectName</a></td><td class="desc">Exception class for several Invalid * Name classes. Class 34 - Invalid Cursor Name Class 3D - Invalid Catalogue Name Class 3F - Invalid Schema Name TODO Add documentation (links) on the error classes TODO Split exception classes if needed based on documentation </td></tr>
<tr id="row_20_0_18_" 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/dca/classstorages_1_1postgres_1_1InvalidRoleSpecification.html" target="_self">storages::postgres::InvalidRoleSpecification</a></td><td class="desc"></td></tr>
<tr id="row_20_0_19_" 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/d26/classstorages_1_1postgres_1_1InvalidSqlStatementName.html" target="_self">storages::postgres::InvalidSqlStatementName</a></td><td class="desc">This exception is thrown in case a prepared statement doesn't exist </td></tr>
<tr id="row_20_0_20_" 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/dbd/classstorages_1_1postgres_1_1InvalidTransactionState.html" target="_self">storages::postgres::InvalidTransactionState</a></td><td class="desc"></td></tr>
<tr id="row_20_0_21_" 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/dde/classstorages_1_1postgres_1_1InvalidTransactionTermination.html" target="_self">storages::postgres::InvalidTransactionTermination</a></td><td class="desc"></td></tr>
<tr id="row_20_0_22_" 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/d97/classstorages_1_1postgres_1_1LocatorException.html" target="_self">storages::postgres::LocatorException</a></td><td class="desc"></td></tr>
<tr id="row_20_0_23_" 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/dfa/classstorages_1_1postgres_1_1ObjectNotInPrerequisiteState.html" target="_self">storages::postgres::ObjectNotInPrerequisiteState</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_20_0_24_" class="arrow" onclick="toggleFolder('20_0_24_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dd5/classstorages_1_1postgres_1_1OperatorIntervention.html" target="_self">storages::postgres::OperatorIntervention</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_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/d0c/classstorages_1_1postgres_1_1AdminShutdown.html" target="_self">storages::postgres::AdminShutdown</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_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="dd/d7a/classstorages_1_1postgres_1_1CannotConnectNow.html" target="_self">storages::postgres::CannotConnectNow</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_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="db/d47/classstorages_1_1postgres_1_1CrashShutdown.html" target="_self">storages::postgres::CrashShutdown</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_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="d4/d00/classstorages_1_1postgres_1_1DatabaseDropped.html" target="_self">storages::postgres::DatabaseDropped</a></td><td class="desc"></td></tr>
<tr id="row_20_0_24_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="d7/d42/classstorages_1_1postgres_1_1QueryCancelled.html" target="_self">storages::postgres::QueryCancelled</a></td><td class="desc"></td></tr>
<tr id="row_20_0_25_" 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/d26/classstorages_1_1postgres_1_1PlPgSqlError.html" target="_self">storages::postgres::PlPgSqlError</a></td><td class="desc"></td></tr>
<tr id="row_20_0_26_" 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/d34/classstorages_1_1postgres_1_1ProgramLimitExceeded.html" target="_self">storages::postgres::ProgramLimitExceeded</a></td><td class="desc"></td></tr>
<tr id="row_20_0_27_" 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/de3/classstorages_1_1postgres_1_1SavepointException.html" target="_self">storages::postgres::SavepointException</a></td><td class="desc"></td></tr>
<tr id="row_20_0_28_" 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/da3/classstorages_1_1postgres_1_1SnapshotFailure.html" target="_self">storages::postgres::SnapshotFailure</a></td><td class="desc"></td></tr>
<tr id="row_20_0_29_" 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/dcb/classstorages_1_1postgres_1_1SqlRoutineException.html" target="_self">storages::postgres::SqlRoutineException</a></td><td class="desc"></td></tr>
<tr id="row_20_0_30_" 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/db9/classstorages_1_1postgres_1_1SqlStatementNotYetComplete.html" target="_self">storages::postgres::SqlStatementNotYetComplete</a></td><td class="desc"></td></tr>
<tr id="row_20_0_31_" 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/d71/classstorages_1_1postgres_1_1SyntaxError.html" target="_self">storages::postgres::SyntaxError</a></td><td class="desc"></td></tr>
<tr id="row_20_0_32_" 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/d49/classstorages_1_1postgres_1_1SystemError.html" target="_self">storages::postgres::SystemError</a></td><td class="desc"></td></tr>
<tr id="row_20_0_33_" 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/dd2/classstorages_1_1postgres_1_1TransactionRollback.html" target="_self">storages::postgres::TransactionRollback</a></td><td class="desc"></td></tr>
<tr id="row_20_0_34_" 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/d86/classstorages_1_1postgres_1_1TriggeredActionException.html" target="_self">storages::postgres::TriggeredActionException</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">C</span></span><a class="el" href="dd/d76/classformats_1_1json_1_1parser_1_1BaseParser.html" target="_self">formats::json::parser::BaseParser</a></td><td class="desc">Base class for SAX parser </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="d6/da9/classformats_1_1json_1_1parser_1_1TypedParser.html" target="_self">formats::json::parser::TypedParser< std::vector< Item > ></a></td><td class="desc"></td></tr>
<tr id="row_21_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_1_" class="arrow" onclick="toggleFolder('21_1_')">►</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">formats::json::parser::TypedParser< bool ></a></td><td class="desc"></td></tr>
<tr id="row_21_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="da/d4a/classformats_1_1json_1_1parser_1_1BoolParser.html" target="_self">formats::json::parser::BoolParser</a></td><td class="desc"></td></tr>
<tr id="row_21_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_2_" class="arrow" onclick="toggleFolder('21_2_')">►</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">formats::json::parser::TypedParser< std::int32_t ></a></td><td class="desc"></td></tr>
<tr id="row_21_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="da/d67/classformats_1_1json_1_1parser_1_1IntegralParser_3_01std_1_1int32__t_01_4.html" target="_self">formats::json::parser::IntegralParser< std::int32_t ></a></td><td class="desc"></td></tr>
<tr id="row_21_3_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_3_" class="arrow" onclick="toggleFolder('21_3_')">►</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">formats::json::parser::TypedParser< std::int64_t ></a></td><td class="desc"></td></tr>
<tr id="row_21_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="d2/dd8/classformats_1_1json_1_1parser_1_1IntegralParser_3_01std_1_1int64__t_01_4.html" target="_self">formats::json::parser::IntegralParser< std::int64_t ></a></td><td class="desc"></td></tr>
<tr id="row_21_4_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_4_" class="arrow" onclick="toggleFolder('21_4_')">►</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">formats::json::parser::TypedParser< Value ></a></td><td class="desc"></td></tr>
<tr id="row_21_4_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/d70/classformats_1_1json_1_1parser_1_1JsonValueParser.html" target="_self">formats::json::parser::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_21_5_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_5_" class="arrow" onclick="toggleFolder('21_5_')">►</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">formats::json::parser::TypedParser< Map ></a></td><td class="desc"></td></tr>
<tr id="row_21_5_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/db3/classformats_1_1json_1_1parser_1_1MapParser.html" target="_self">formats::json::parser::MapParser< Map, ValueParser ></a></td><td class="desc"></td></tr>
<tr id="row_21_6_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_6_" class="arrow" onclick="toggleFolder('21_6_')">►</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">formats::json::parser::TypedParser< Number ></a></td><td class="desc"></td></tr>
<tr id="row_21_6_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/d34/classformats_1_1json_1_1parser_1_1NumberParser.html" target="_self">formats::json::parser::NumberParser< Number ></a></td><td class="desc"></td></tr>
<tr id="row_21_7_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_7_" class="arrow" onclick="toggleFolder('21_7_')">►</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">formats::json::parser::TypedParser< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_21_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="da/dd7/classformats_1_1json_1_1parser_1_1StringParser.html" target="_self">formats::json::parser::StringParser</a></td><td class="desc"></td></tr>
<tr id="row_21_8_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_21_8_" class="arrow" onclick="toggleFolder('21_8_')">►</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">formats::json::parser::TypedParser< T ></a></td><td class="desc">Main base class for SAX parsers </td></tr>
<tr id="row_21_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/d6a/classformats_1_1json_1_1parser_1_1ArrayParser.html" target="_self">formats::json::parser::ArrayParser< Item, ItemParser, Array ></a></td><td class="desc"></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">C</span></span><a class="el" href="d3/dd1/classformats_1_1json_1_1parser_1_1BaseValidator.html" target="_self">formats::json::parser::BaseValidator< T ></a></td><td class="desc"></td></tr>
<tr id="row_22_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="d2/d7e/classformats_1_1json_1_1parser_1_1EmptyValidator.html" target="_self">formats::json::parser::EmptyValidator< T ></a></td><td class="desc"></td></tr>
<tr id="row_22_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="d0/d65/classformats_1_1json_1_1parser_1_1Validator.html" target="_self">formats::json::parser::Validator< T, F ></a></td><td class="desc"></td></tr>
<tr id="row_23_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dd7/classugrpc_1_1client_1_1BidirectionalStream.html" target="_self">ugrpc::client::BidirectionalStream< Request, Response ></a></td><td class="desc">Controls a request stream -> response stream RPC </td></tr>
<tr id="row_24_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d6c/classugrpc_1_1server_1_1BidirectionalStream.html" target="_self">ugrpc::server::BidirectionalStream< Request, Response ></a></td><td class="desc">Controls a request stream -> response stream RPC </td></tr>
<tr id="row_25_" class="odd"><td class="entry"><span style="width:16px;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">formats::bson::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_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">C</span></span><b>std::bool_constant</b></td><td class="desc"></td></tr>
<tr id="row_26_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="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">storages::postgres::io::traits::TupleHasFormatters< std::tuple< T... > ></a></td><td class="desc"></td></tr>
<tr id="row_26_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="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">storages::postgres::io::traits::TupleHasParsers< std::tuple< T... > ></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">C</span></span><b>BoolConstant</b></td><td class="desc"></td></tr>
<tr id="row_27_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="da/dac/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToArray.html" target="_self">storages::postgres::io::traits::IsMappedToArray< T ></a></td><td class="desc">Detect if the C++ type is mapped to a Postgres array type </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">C</span></span><a class="el" href="d6/d4c/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg.html" target="_self">storages::postgres::io::traits::IsMappedToPg< T, typename ></a></td><td class="desc">Detect if the C++ type is mapped to a Postgres type </td></tr>
<tr id="row_27_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="d0/d67/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01Null_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsMappedToPg< Null< T > ></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="df/dce/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsMappedToPg< boost::optional< T > ></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="dd/d35/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsMappedToPg< std::optional< T > ></a></td><td class="desc"></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="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">storages::postgres::io::traits::IsMappedToPg<::utils::OptionalRef< T > ></a></td><td class="desc"></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="d6/d12/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01Null_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsSpecialMapping< Null< T > ></a></td><td class="desc"></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="da/dbc/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01boost_1_1optional_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsSpecialMapping< boost::optional< T > ></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="d5/d66/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01std_1_1optional_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::traits::IsSpecialMapping< std::optional< T > ></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="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">storages::postgres::io::traits::IsSpecialMapping<::utils::OptionalRef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_27_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="d2/db6/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToPg_3_01_1_1utils_1_1StrongTypedef_3_01Ta2146c60a3af1805efa13dbb1244d5bc2.html" target="_self">storages::postgres::io::traits::IsMappedToPg< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_27_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="d5/de2/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping_3_01_1_1utils_1_1StrongTypedef_3_0250bf6d0ae85f21f33a13e0f0b9a847.html" target="_self">storages::postgres::io::traits::IsSpecialMapping< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_27_4_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_27_4_" class="arrow" onclick="toggleFolder('27_4_')">►</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">storages::postgres::io::traits::IsSuitableRowType< T ></a></td><td class="desc"></td></tr>
<tr id="row_27_4_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/d87/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSuitableRowType_3_01_1_1utils_1_1StrongTypedef_3bc5a79dd338b2ed437a5c63dffa4c73a.html" target="_self">storages::postgres::io::traits::IsSuitableRowType< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_28_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::BoundedRange< T ></a></td><td class="desc"></td></tr>
<tr id="row_29_" class="odd"><td class="entry"><span style="width:16px;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">formats::bson::BsonString</a></td><td class="desc"></td></tr>
<tr id="row_30_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_30_" class="arrow" onclick="toggleFolder('30_')">►</span><span class="icona"><span class="icon">C</span></span><b>BufferCategoryConstant</b></td><td class="desc"></td></tr>
<tr id="row_30_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_30_0_" class="arrow" onclick="toggleFolder('30_0_')">►</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">storages::postgres::io::traits::ParserBufferCategory< traits::IO< T >::ParserType ></a></td><td class="desc"></td></tr>
<tr id="row_30_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/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">storages::postgres::io::traits::ParserBufferCategory< BufferParser< boost::optional< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_30_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="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">storages::postgres::io::traits::ParserBufferCategory< BufferParser< std::optional< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_30_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="dc/d79/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory_3_01BufferParser_3_1_1utils_1e80293f1684d83c9b727d680e076652d.html" target="_self">storages::postgres::io::traits::ParserBufferCategory< BufferParser<::utils::StrongTypedef< Tag, T, Ops, Enable > > ></a></td><td class="desc"></td></tr>
<tr id="row_30_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="d6/df6/structstorages_1_1postgres_1_1io_1_1traits_1_1ParserBufferCategory.html" target="_self">storages::postgres::io::traits::ParserBufferCategory< T ></a></td><td class="desc">Buffer category for parser </td></tr>
<tr id="row_31_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferCategoryHash</a></td><td class="desc"></td></tr>
<tr id="row_32_" class="even"><td class="entry"><span style="width:16px;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">engine::io::BufferedReader</a></td><td class="desc">Wrapper for buffered input </td></tr>
<tr id="row_33_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< T, Enable ></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_34_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< bool ></a></td><td class="desc"></td></tr>
<tr id="row_35_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< char ></a></td><td class="desc"></td></tr>
<tr id="row_36_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< char[N]></a></td><td class="desc"></td></tr>
<tr id="row_37_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< const char * ></a></td><td class="desc"></td></tr>
<tr id="row_38_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::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_39_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< MultiPrecision< Precision > ></a></td><td class="desc"></td></tr>
<tr id="row_40_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_41_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< std::chrono::time_point< ClockType, Duration > ></a></td><td class="desc">Binary formatter for std::chrono::time_point </td></tr>
<tr id="row_42_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferFormatter< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_43_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_43_" class="arrow" onclick="toggleFolder('43_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< T ></b></td><td class="desc"></td></tr>
<tr id="row_43_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_43_0_" class="arrow" onclick="toggleFolder('43_0_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::OptionalValueFormatter< boost::optional, T ></b></td><td class="desc"></td></tr>
<tr id="row_43_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="de/def/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01boost_1_1optional_3_01T_01_4_00_01std_1_c72a17c1aed54848028043d728a5604f.html" target="_self">storages::postgres::io::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_43_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_43_1_" class="arrow" onclick="toggleFolder('43_1_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::OptionalValueFormatter< std::optional, T ></b></td><td class="desc"></td></tr>
<tr id="row_43_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="d9/d4c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1optional_3_01T_01_4_00_01std_1_1eb467875aee52b6f201e9e8e272f5f36e.html" target="_self">storages::postgres::io::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_43_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_43_2_" class="arrow" onclick="toggleFolder('43_2_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::OptionalValueFormatter<::utils::OptionalRef, T ></b></td><td class="desc"></td></tr>
<tr id="row_43_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="d7/d78/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_1_1utils_1_1OptionalRef_3_01T_01_4_00_01st8ec8a2f0324460c3c9ff78ecef90ebc0.html" target="_self">storages::postgres::io::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_44_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_44_" class="arrow" onclick="toggleFolder('44_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< ::utils::datetime::TimeOfDay< Duration > ></b></td><td class="desc"></td></tr>
<tr id="row_44_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="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">storages::postgres::io::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_45_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_45_" class="arrow" onclick="toggleFolder('45_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></b></td><td class="desc"></td></tr>
<tr id="row_45_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="dd/dcf/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01_1_1utils_1_1StrongTypedef_3_01Tag_00_01b7994439f3de4e1ac797fe71c4c0538d.html" target="_self">storages::postgres::io::BufferFormatter< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_46_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_46_" class="arrow" onclick="toggleFolder('46_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< boost::uuids::uuid ></b></td><td class="desc"></td></tr>
<tr id="row_46_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="de/d0c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">storages::postgres::io::BufferFormatter< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_47_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_47_" class="arrow" onclick="toggleFolder('47_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< decimal64::Decimal< Prec, RoundPolicy > ></b></td><td class="desc"></td></tr>
<tr id="row_47_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="d0/d3c/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">storages::postgres::io::BufferFormatter< decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_48_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< Optional< T > ></b></td><td class="desc"></td></tr>
<tr id="row_49_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_49_" class="arrow" onclick="toggleFolder('49_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< postgres::ByteaWrapper< ByteContainer > ></b></td><td class="desc"></td></tr>
<tr id="row_49_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/d13/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01postgres_1_1ByteaWrapper_3_01ByteContain35b56704448f057db4a2651ad00f5a13.html" target="_self">storages::postgres::io::BufferFormatter< postgres::ByteaWrapper< ByteContainer >, traits::EnableIfByteaCompatible< std::decay_t< ByteContainer > > ></a></td><td class="desc"></td></tr>
<tr id="row_50_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_50_" class="arrow" onclick="toggleFolder('50_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< std::string_view ></b></td><td class="desc"></td></tr>
<tr id="row_50_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/d41/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01std_1_1string__view_01_4.html" target="_self">storages::postgres::io::BufferFormatter< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_51_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_51_" class="arrow" onclick="toggleFolder('51_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferFormatterBase< UserType ></b></td><td class="desc"></td></tr>
<tr id="row_51_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="d4/dc2/structstorages_1_1postgres_1_1io_1_1TransformFormatter.html" target="_self">storages::postgres::io::TransformFormatter< UserType, WireType, Converter ></a></td><td class="desc"></td></tr>
<tr id="row_52_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferParser< T, Enable ></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_53_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferParser< bool ></a></td><td class="desc"></td></tr>
<tr id="row_54_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferParser< char ></a></td><td class="desc"></td></tr>
<tr id="row_55_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::BufferParser< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_56_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_56_" class="arrow" onclick="toggleFolder('56_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< T ></b></td><td class="desc"></td></tr>
<tr id="row_56_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_0_" class="arrow" onclick="toggleFolder('56_0_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::FloatingPointBinaryParser< double ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d1/dca/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01double_01_4.html" target="_self">storages::postgres::io::BufferParser< double ></a></td><td class="desc"></td></tr>
<tr id="row_56_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_1_" class="arrow" onclick="toggleFolder('56_1_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::FloatingPointBinaryParser< float ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d0/d43/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01float_01_4.html" target="_self">storages::postgres::io::BufferParser< float ></a></td><td class="desc"></td></tr>
<tr id="row_56_2_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_2_" class="arrow" onclick="toggleFolder('56_2_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryParser< Bigint ></b></td><td class="desc"></td></tr>
<tr id="row_56_2_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="d4/d17/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Bigint_01_4.html" target="_self">storages::postgres::io::BufferParser< Bigint ></a></td><td class="desc"></td></tr>
<tr id="row_56_3_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_3_" class="arrow" onclick="toggleFolder('56_3_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryParser< Integer ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d4/d84/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Integer_01_4.html" target="_self">storages::postgres::io::BufferParser< Integer ></a></td><td class="desc"></td></tr>
<tr id="row_56_4_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_4_" class="arrow" onclick="toggleFolder('56_4_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryParser< Smallint ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d0/deb/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Smallint_01_4.html" target="_self">storages::postgres::io::BufferParser< Smallint ></a></td><td class="desc"></td></tr>
<tr id="row_56_5_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_5_" class="arrow" onclick="toggleFolder('56_5_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::OptionalValueParser< boost::optional, T, detail::kParserRequiresTypeCategories< T > ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d1/d49/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01boost_1_1optional_3_01T_01_4_00_01std_1_1en5d6cc1f681ac7ae313741632cfc5ea7d.html" target="_self">storages::postgres::io::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_56_6_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_6_" class="arrow" onclick="toggleFolder('56_6_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::OptionalValueParser< std::optional, T, detail::kParserRequiresTypeCategories< T > ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="d9/dc5/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1optional_3_01T_01_4_00_01std_1_1enabeb3e350cb875d628af69c5ca14509569.html" target="_self">storages::postgres::io::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_56_7_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_56_7_" class="arrow" onclick="toggleFolder('56_7_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::StrongTypedefParser< ::utils::StrongTypedef< Tag, T, Ops, Enable >, detail::kParserRequiresTypeCategories< T > ></b></td><td class="desc"></td></tr>
<tr id="row_56_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="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">storages::postgres::io::BufferParser< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_57_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_57_" class="arrow" onclick="toggleFolder('57_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< ::utils::datetime::TimeOfDay< Duration > ></b></td><td class="desc"></td></tr>
<tr id="row_57_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="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">storages::postgres::io::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_58_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_58_" class="arrow" onclick="toggleFolder('58_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< boost::uuids::uuid ></b></td><td class="desc"></td></tr>
<tr id="row_58_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="d2/d7d/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01boost_1_1uuids_1_1uuid_01_4.html" target="_self">storages::postgres::io::BufferParser< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_59_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_59_" class="arrow" onclick="toggleFolder('59_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< Date ></b></td><td class="desc"></td></tr>
<tr id="row_59_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="da/d58/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01Date_01_4.html" target="_self">storages::postgres::io::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_60_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_60_" class="arrow" onclick="toggleFolder('60_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< decimal64::Decimal< Prec, RoundPolicy > ></b></td><td class="desc"></td></tr>
<tr id="row_60_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="df/d90/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01decimal64_1_1Decimal_3_01Prec_00_01RoundPolicy_01_4_01_4.html" target="_self">storages::postgres::io::BufferParser< decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc"></td></tr>
<tr id="row_61_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_61_" class="arrow" onclick="toggleFolder('61_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< MultiPrecision< Precision > ></b></td><td class="desc"></td></tr>
<tr id="row_61_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="da/d87/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01MultiPrecision_3_01Precision_01_4_01_4.html" target="_self">storages::postgres::io::BufferParser< MultiPrecision< Precision > ></a></td><td class="desc"></td></tr>
<tr id="row_62_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< Optional< T > ></b></td><td class="desc"></td></tr>
<tr id="row_63_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_63_" class="arrow" onclick="toggleFolder('63_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< postgres::ByteaWrapper< ByteContainer > ></b></td><td class="desc"></td></tr>
<tr id="row_63_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/d1a/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01postgres_1_1ByteaWrapper_3_01ByteContainer_1224ed46188ef26d87ca48a3c8cd534d.html" target="_self">storages::postgres::io::BufferParser< postgres::ByteaWrapper< ByteContainer >, traits::EnableIfByteaCompatible< std::decay_t< ByteContainer > > ></a></td><td class="desc"></td></tr>
<tr id="row_64_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_64_" class="arrow" onclick="toggleFolder('64_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< std::chrono::time_point< ClockType, Duration > ></b></td><td class="desc"></td></tr>
<tr id="row_64_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/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">storages::postgres::io::BufferParser< std::chrono::time_point< ClockType, Duration > ></a></td><td class="desc">Binary parser for std::chrono::time_point </td></tr>
<tr id="row_65_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_65_" class="arrow" onclick="toggleFolder('65_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< std::string_view ></b></td><td class="desc"></td></tr>
<tr id="row_65_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="da/dbe/structstorages_1_1postgres_1_1io_1_1BufferParser_3_01std_1_1string__view_01_4.html" target="_self">storages::postgres::io::BufferParser< std::string_view ></a></td><td class="desc"></td></tr>
<tr id="row_66_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< StrongTypedef ></b></td><td class="desc"></td></tr>
<tr id="row_67_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_67_" class="arrow" onclick="toggleFolder('67_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::BufferParserBase< UserType ></b></td><td class="desc"></td></tr>
<tr id="row_67_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_67_0_" class="arrow" onclick="toggleFolder('67_0_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::TransformParserBase< UserType, WireType, Converter, detail::kParserRequiresTypeCategories< WireType > ></b></td><td class="desc"></td></tr>
<tr id="row_67_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="da/d94/structstorages_1_1postgres_1_1io_1_1TransformParser.html" target="_self">storages::postgres::io::TransformParser< UserType, WireType, Converter ></a></td><td class="desc"></td></tr>
<tr id="row_68_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::operations::Bulk</a></td><td class="desc">Efficiently executes a number of operations over a single collection </td></tr>
<tr id="row_69_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d92/classutils_1_1statistics_1_1BusyMarker.html" target="_self">utils::statistics::BusyMarker</a></td><td class="desc"></td></tr>
<tr id="row_70_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d8c/classutils_1_1statistics_1_1BusyStorage.html" target="_self">utils::statistics::BusyStorage</a></td><td class="desc"></td></tr>
<tr id="row_71_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::ByteaWrapper< ByteContainer ></a></td><td class="desc">Wrapper for binary data container </td></tr>
<tr id="row_72_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d29/classtestsuite_1_1CacheControl.html" target="_self">testsuite::CacheControl</a></td><td class="desc">Periodically updated caches control interface for testsuite </td></tr>
<tr id="row_73_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/df1/structutils_1_1CachedHash.html" target="_self">utils::CachedHash< Key ></a></td><td class="desc">Holds the key and its hash for faster comparisons and hashing </td></tr>
<tr id="row_74_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/db8/classutils_1_1CachedHashKeyEqual_3_01Equal_00_01std_1_1false__type_01_4.html" target="_self">utils::CachedHashKeyEqual< Equal, std::false_type ></a></td><td class="desc"></td></tr>
<tr id="row_75_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/d1c/classtestsuite_1_1CacheInvalidatorHolder.html" target="_self">testsuite::CacheInvalidatorHolder</a></td><td class="desc">RAII helper for testsuite registration </td></tr>
<tr id="row_76_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_76_" class="arrow" onclick="toggleFolder('76_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/df8/classcache_1_1CacheUpdateTrait.html" target="_self">cache::CacheUpdateTrait</a></td><td class="desc">Base class for periodically updated caches </td></tr>
<tr id="row_76_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_76_0_" class="arrow" onclick="toggleFolder('76_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< dynamic_config::DocsMap ></a></td><td class="desc"></td></tr>
<tr id="row_76_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="d3/da0/classcomponents_1_1DynamicConfigClientUpdater.html" target="_self">components::DynamicConfigClientUpdater</a></td><td class="desc">Component that does a periodic update of runtime configs </td></tr>
<tr id="row_76_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_76_1_" class="arrow" onclick="toggleFolder('76_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< MongoCacheTraits::DataType ></a></td><td class="desc"></td></tr>
<tr id="row_76_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/d39/classcomponents_1_1MongoCache.html" target="_self">components::MongoCache< MongoCacheTraits ></a></td><td class="desc">Base class for all caches polling mongo collection </td></tr>
<tr id="row_76_2_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_76_2_" class="arrow" onclick="toggleFolder('76_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< T ></a></td><td class="desc">Base class for caching components </td></tr>
<tr id="row_76_2_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/d8d/classcomponents_1_1PostgreCache.html" target="_self">components::PostgreCache< PostgreCachePolicy ></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_77_" class="odd"><td class="entry"><span style="width:16px;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">pytest_userver.plugins.log_capture.CaptureControl</a></td><td class="desc"></td></tr>
<tr id="row_78_" class="even"><td class="entry"><span style="width:16px;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">pytest_userver.plugins.log_capture.CapturedLogs</a></td><td class="desc"></td></tr>
<tr id="row_79_" class="odd"><td class="entry"><span style="width:16px;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">decimal64::CeilingRoundPolicy</a></td><td class="desc">Round towards +infinity </td></tr>
<tr id="row_80_" class="even"><td class="entry"><span style="width:16px;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">crypto::Certificate</a></td><td class="desc">Loaded into memory X509 certificate </td></tr>
<tr id="row_81_" class="odd"><td class="entry"><span style="width:16px;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">fs::blocking::CFile</a></td><td class="desc">A <code>std::FILE*</code> wrapper </td></tr>
<tr id="row_82_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d6c/classutils_1_1CheckedPtr.html" target="_self">utils::CheckedPtr< T ></a></td><td class="desc">Utility template for returning a pointer to an object that is owned by someone else; throws std::runtime_error if nullptr is stored </td></tr>
<tr id="row_83_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d83/classutils_1_1CheckedPtr_3_01T_01_6_01_4.html" target="_self">utils::CheckedPtr< T & ></a></td><td class="desc"></td></tr>
<tr id="row_84_" class="even"><td class="entry"><span style="width:16px;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">engine::subprocess::ChildProcess</a></td><td class="desc"></td></tr>
<tr id="row_85_" class="odd"><td class="entry"><span style="width:16px;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">engine::subprocess::ChildProcessStatus</a></td><td class="desc">Status of finished subprocess </td></tr>
<tr id="row_86_" class="even"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::columns::ClickhouseColumn< ColumnType ></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_87_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_87_" class="arrow" onclick="toggleFolder('87_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< DateTime64Column< Precision, Duration< Rep, Period > > ></a></td><td class="desc"></td></tr>
<tr id="row_87_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/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">storages::clickhouse::io::columns::DateTime64Column< Precision, Duration< Rep, Period > ></a></td><td class="desc"></td></tr>
<tr id="row_88_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_88_" class="arrow" onclick="toggleFolder('88_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< DateTimeColumn ></a></td><td class="desc"></td></tr>
<tr id="row_88_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/d19/classstorages_1_1clickhouse_1_1io_1_1columns_1_1DateTimeColumn.html" target="_self">storages::clickhouse::io::columns::DateTimeColumn</a></td><td class="desc">Represents ClickHouse DateTime column </td></tr>
<tr id="row_89_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_89_" class="arrow" onclick="toggleFolder('89_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< Float32Column ></a></td><td class="desc"></td></tr>
<tr id="row_89_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="dd/d6c/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Float32Column.html" target="_self">storages::clickhouse::io::columns::Float32Column</a></td><td class="desc">Represents Clickhouse Float32 column </td></tr>
<tr id="row_90_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_90_" class="arrow" onclick="toggleFolder('90_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< Float64Column ></a></td><td class="desc"></td></tr>
<tr id="row_90_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/dd2/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Float64Column.html" target="_self">storages::clickhouse::io::columns::Float64Column</a></td><td class="desc">Represents Clickhouse Float64 column </td></tr>
<tr id="row_91_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_91_" class="arrow" onclick="toggleFolder('91_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< Int32Column ></a></td><td class="desc"></td></tr>
<tr id="row_91_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="d0/d45/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int32Column.html" target="_self">storages::clickhouse::io::columns::Int32Column</a></td><td class="desc">Represents Clickhouse Int32 column </td></tr>
<tr id="row_92_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_92_" class="arrow" onclick="toggleFolder('92_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< Int64Column ></a></td><td class="desc"></td></tr>
<tr id="row_92_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/d2a/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int64Column.html" target="_self">storages::clickhouse::io::columns::Int64Column</a></td><td class="desc">Represents ClickHouse Int64 column </td></tr>
<tr id="row_93_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_93_" class="arrow" onclick="toggleFolder('93_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< Int8Column ></a></td><td class="desc"></td></tr>
<tr id="row_93_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/d45/classstorages_1_1clickhouse_1_1io_1_1columns_1_1Int8Column.html" target="_self">storages::clickhouse::io::columns::Int8Column</a></td><td class="desc">Represents ClickHouse UInt8 Column </td></tr>
<tr id="row_94_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_94_" class="arrow" onclick="toggleFolder('94_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< NullableColumn< T > ></a></td><td class="desc"></td></tr>
<tr id="row_94_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="d5/db3/classstorages_1_1clickhouse_1_1io_1_1columns_1_1NullableColumn.html" target="_self">storages::clickhouse::io::columns::NullableColumn< T ></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_95_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_95_" class="arrow" onclick="toggleFolder('95_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< StringColumn ></a></td><td class="desc"></td></tr>
<tr id="row_95_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/d26/classstorages_1_1clickhouse_1_1io_1_1columns_1_1StringColumn.html" target="_self">storages::clickhouse::io::columns::StringColumn</a></td><td class="desc">Represents ClickHouse String column </td></tr>
<tr id="row_96_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_96_" class="arrow" onclick="toggleFolder('96_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< UInt32Column ></a></td><td class="desc"></td></tr>
<tr id="row_96_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="d2/dfc/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt32Column.html" target="_self">storages::clickhouse::io::columns::UInt32Column</a></td><td class="desc">Represents ClickHouse UInt32 column </td></tr>
<tr id="row_97_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_97_" class="arrow" onclick="toggleFolder('97_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< UInt64Column ></a></td><td class="desc"></td></tr>
<tr id="row_97_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/d93/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt64Column.html" target="_self">storages::clickhouse::io::columns::UInt64Column</a></td><td class="desc">Represents ClickHouse UInt64 column </td></tr>
<tr id="row_98_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_98_" class="arrow" onclick="toggleFolder('98_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< UInt8Column ></a></td><td class="desc"></td></tr>
<tr id="row_98_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/d3b/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UInt8Column.html" target="_self">storages::clickhouse::io::columns::UInt8Column</a></td><td class="desc">Represents ClickHouse UInt8 Column </td></tr>
<tr id="row_99_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_99_" class="arrow" onclick="toggleFolder('99_')">►</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">storages::clickhouse::io::columns::ClickhouseColumn< UuidColumn ></a></td><td class="desc"></td></tr>
<tr id="row_99_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/dd7/classstorages_1_1clickhouse_1_1io_1_1columns_1_1UuidColumn.html" target="_self">storages::clickhouse::io::columns::UuidColumn</a></td><td class="desc">Represents ClickHouse UUID column </td></tr>
<tr id="row_100_" class="even"><td class="entry"><span style="width:16px;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">clients::http::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_101_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d61/classdynamic__config_1_1Client.html" target="_self">dynamic_config::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_102_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/da0/classstorages_1_1redis_1_1Client.html" target="_self">storages::redis::Client</a></td><td class="desc">Redis client </td></tr>
<tr id="row_103_" class="odd"><td class="entry"><span style="width:16px;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">dynamic_config::ClientConfig</a></td><td class="desc"></td></tr>
<tr id="row_104_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/dac/classugrpc_1_1client_1_1ClientFactory.html" target="_self">ugrpc::client::ClientFactory</a></td><td class="desc">Creates generated gRPC clients. Has a minimal built-in channel cache: as long as a channel to the same endpoint is used somewhere, the same channel is given out </td></tr>
<tr id="row_105_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d8e/structugrpc_1_1client_1_1ClientFactoryConfig.html" target="_self">ugrpc::client::ClientFactoryConfig</a></td><td class="desc">Settings relating to the <a class="el" href="d5/dac/classugrpc_1_1client_1_1ClientFactory.html" title="Creates generated gRPC clients. Has a minimal built-in channel cache: as long as a channel to the sam...">ClientFactory</a> </td></tr>
<tr id="row_106_" class="even"><td class="entry"><span style="width:16px;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">clients::http::ClientSettings</a></td><td class="desc"></td></tr>
<tr id="row_107_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d34/structurabbitmq_1_1ClientSettings.html" target="_self">urabbitmq::ClientSettings</a></td><td class="desc"></td></tr>
<tr id="row_108_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_108_" class="arrow" onclick="toggleFolder('108_')">►</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">pytest_userver.client.ClientWrapper</a></td><td class="desc"></td></tr>
<tr id="row_108_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="d5/d79/classpytest__userver_1_1client_1_1Client.html" target="_self">pytest_userver.client.Client</a></td><td class="desc"></td></tr>
<tr id="row_108_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/dd8/classpytest__userver_1_1client_1_1ClientMonitor.html" target="_self">pytest_userver.client.ClientMonitor</a></td><td class="desc"></td></tr>
<tr id="row_109_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d48/classstorages_1_1clickhouse_1_1Cluster.html" target="_self">storages::clickhouse::Cluster</a></td><td class="desc">Interface for executing queries on a cluster of ClickHouse servers </td></tr>
<tr id="row_110_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::Cluster</a></td><td class="desc">Interface for executing queries on a cluster of PostgreSQL servers </td></tr>
<tr id="row_111_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::ClusterHostTypeHash</a></td><td class="desc"></td></tr>
<tr id="row_112_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::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_113_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::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_114_" class="even"><td class="entry"><span style="width:16px;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">redis::CmdArgs</a></td><td class="desc"></td></tr>
<tr id="row_115_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::Collection</a></td><td class="desc">MongoDB collection handle, the main way to operate with MongoDB </td></tr>
<tr id="row_116_" class="even"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::columns::ColumnIterator< ColumnType ></a></td><td class="desc">Forward-iterator for iterating over column of type ColumnType </td></tr>
<tr id="row_117_" class="odd"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::ColumnsMapper< MappedType ></a></td><td class="desc"></td></tr>
<tr id="row_118_" class="even"><td class="entry"><span style="width:16px;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">redis::CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_119_" class="odd"><td class="entry"><span style="width:16px;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">storages::clickhouse::CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_120_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::CommandControl</a></td><td class="desc"></td></tr>
<tr id="row_121_" class="odd"><td class="entry"><span style="width:16px;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">redis::CommandsBufferingSettings</a></td><td class="desc"></td></tr>
<tr id="row_122_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::options::Comment</a></td><td class="desc">Sets a comment for the operation, which would be visible in profile data </td></tr>
<tr id="row_123_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_123_" class="arrow" onclick="toggleFolder('123_')">►</span><span class="icona"><span class="icon">C</span></span><b>components::impl::ComponentBase</b></td><td class="desc">Don't use it for application components, use <a class="el" href="d5/d69/classcomponents_1_1LoggableComponentBase.html" title="Base class for all application components, it depends on components::Logger and components::Tracer.">LoggableComponentBase</a> instead </td></tr>
<tr id="row_123_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_123_0_" class="arrow" onclick="toggleFolder('123_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d69/classcomponents_1_1LoggableComponentBase.html" target="_self">components::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_123_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="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< dynamic_config::DocsMap ></a></td><td class="desc"></td></tr>
<tr id="row_123_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="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< MongoCacheTraits::DataType ></a></td><td class="desc"></td></tr>
<tr id="row_123_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="d9/d97/classcache_1_1LruCacheComponent.html" target="_self">cache::LruCacheComponent< Key, Value, Hash, Equal ></a></td><td class="desc">Base class for LRU-cache components </td></tr>
<tr id="row_123_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="d0/d1e/classclients_1_1dns_1_1Component.html" target="_self">clients::dns::Component</a></td><td class="desc">Caching DNS resolver component </td></tr>
<tr id="row_123_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="dc/d75/classcomponents_1_1AuthCheckerSettings.html" target="_self">components::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_123_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="df/dd1/classcomponents_1_1CachingComponentBase.html" target="_self">components::CachingComponentBase< T ></a></td><td class="desc">Base class for caching components </td></tr>
<tr id="row_123_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="d8/daa/classcomponents_1_1ClickHouse.html" target="_self">components::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_123_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="d2/da7/classcomponents_1_1DumpConfigurator.html" target="_self">components::DumpConfigurator</a></td><td class="desc">Helper component that manages common configuration for userver dumps </td></tr>
<tr id="row_123_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="dd/d1a/classcomponents_1_1DynamicConfig.html" target="_self">components::DynamicConfig</a></td><td class="desc">Component that stores the runtime config </td></tr>
<tr id="row_123_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="d8/d1f/classcomponents_1_1DynamicConfigClient.html" target="_self">components::DynamicConfigClient</a></td><td class="desc">Component that starts a clients::dynamic_config::Client client </td></tr>
<tr id="row_123_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="d8/d9c/classcomponents_1_1DynamicConfigFallbacks.html" target="_self">components::DynamicConfigFallbacks</a></td><td class="desc">Component that setup runtime configs based on fallbacks from file </td></tr>
<tr id="row_123_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/dd3/classcomponents_1_1FsCache.html" target="_self">components::FsCache</a></td><td class="desc">Component for storing files in memory </td></tr>
<tr id="row_123_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="dd/d5a/classcomponents_1_1HttpClient.html" target="_self">components::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_123_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="d0/dda/classcomponents_1_1Mongo.html" target="_self">components::Mongo</a></td><td class="desc">MongoDB client component </td></tr>
<tr id="row_123_0_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="d2/d4a/classcomponents_1_1MultiMongo.html" target="_self">components::MultiMongo</a></td><td class="desc">Dynamically configurable MongoDB client component </td></tr>
<tr id="row_123_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="d1/d92/classcomponents_1_1Postgres.html" target="_self">components::Postgres</a></td><td class="desc">PosgreSQL client component </td></tr>
<tr id="row_123_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="d6/d8c/classcomponents_1_1ProcessStarter.html" target="_self">components::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_123_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="d5/d23/classcomponents_1_1RabbitMQ.html" target="_self">components::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_123_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="d6/dd0/classcomponents_1_1Redis.html" target="_self">components::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_123_0_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="da/dc7/classcomponents_1_1Secdist.html" target="_self">components::Secdist</a></td><td class="desc">Component that stores security related data (keys, passwords, ...) </td></tr>
<tr id="row_123_0_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/d0b/classcomponents_1_1Server.html" target="_self">components::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_123_0_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/dfa/classcomponents_1_1SingleThreadedTaskProcessors.html" target="_self">components::SingleThreadedTaskProcessors</a></td><td class="desc">Component that starts multiple single threaded task processors </td></tr>
<tr id="row_123_0_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="d8/daf/classcomponents_1_1StatisticsStorage.html" target="_self">components::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_123_0_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="df/df4/classcomponents_1_1SystemStatisticsCollector.html" target="_self">components::SystemStatisticsCollector</a></td><td class="desc">Component for system resource usage statistics collection </td></tr>
<tr id="row_123_0_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="d1/dbc/classcomponents_1_1TcpAcceptorBase.html" target="_self">components::TcpAcceptorBase</a></td><td class="desc">Component for accepting incoming TCP connections </td></tr>
<tr id="row_123_0_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="de/dac/classcongestion__control_1_1Component.html" target="_self">congestion_control::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_123_0_26_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_123_0_26_" class="arrow" onclick="toggleFolder('123_0_26_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/ddc/classserver_1_1handlers_1_1HandlerBase.html" target="_self">server::handlers::HandlerBase</a></td><td class="desc">Base class for the request handlers </td></tr>
<tr id="row_123_0_26_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_123_0_26_0_" class="arrow" onclick="toggleFolder('123_0_26_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d36/classserver_1_1handlers_1_1HttpHandlerBase.html" target="_self">server::handlers::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_123_0_26_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="d1/d48/classserver_1_1handlers_1_1DnsClientControl.html" target="_self">server::handlers::DnsClientControl</a></td><td class="desc">Handlers that controls the DNS client </td></tr>
<tr id="row_123_0_26_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="dd/dea/classserver_1_1handlers_1_1DynamicDebugLog.html" target="_self">server::handlers::DynamicDebugLog</a></td><td class="desc">Handler for forcing specific lines logging. Feature also known as dynamic debug logging </td></tr>
<tr id="row_123_0_26_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="d8/dfe/classserver_1_1handlers_1_1HttpHandlerFlatbufBase.html" target="_self">server::handlers::HttpHandlerFlatbufBase< InputType, ReturnType ></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_123_0_26_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_123_0_26_0_3_" class="arrow" onclick="toggleFolder('123_0_26_0_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/dbe/classserver_1_1handlers_1_1HttpHandlerJsonBase.html" target="_self">server::handlers::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_123_0_26_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="d8/d67/classserver_1_1handlers_1_1InspectRequests.html" target="_self">server::handlers::InspectRequests</a></td><td class="desc">Handler that returns information about all in-flight requests </td></tr>
<tr id="row_123_0_26_0_3_1_" 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="d5/ded/classserver_1_1handlers_1_1TestsControl.html" target="_self">server::handlers::TestsControl</a></td><td class="desc">Handler that allows to control the behavior of server from tests </td></tr>
<tr id="row_123_0_26_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="dd/d88/classserver_1_1handlers_1_1HttpHandlerStatic.html" target="_self">server::handlers::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_123_0_26_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="d2/d34/classserver_1_1handlers_1_1Jemalloc.html" target="_self">server::handlers::Jemalloc</a></td><td class="desc">Handler that controlls the jemalloc allocator </td></tr>
<tr id="row_123_0_26_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="da/da0/classserver_1_1handlers_1_1LogLevel.html" target="_self">server::handlers::LogLevel</a></td><td class="desc">Handler that controlls logging levels of all the loggers </td></tr>
<tr id="row_123_0_26_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/d6d/classserver_1_1handlers_1_1Ping.html" target="_self">server::handlers::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_123_0_26_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="dc/d10/classserver_1_1handlers_1_1ServerMonitor.html" target="_self">server::handlers::ServerMonitor</a></td><td class="desc">Handler that returns statistics data </td></tr>
<tr id="row_123_0_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="db/df7/classstorages_1_1mongo_1_1DistLockComponentBase.html" target="_self">storages::mongo::DistLockComponentBase</a></td><td class="desc">Base class for mongo-based distlock worker components </td></tr>
<tr id="row_123_0_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="d2/d55/classstorages_1_1postgres_1_1DistLockComponentBase.html" target="_self">storages::postgres::DistLockComponentBase</a></td><td class="desc">Base class for postgres-based distlock worker components </td></tr>
<tr id="row_123_0_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="db/d02/classugrpc_1_1client_1_1ClientFactoryComponent.html" target="_self">ugrpc::client::ClientFactoryComponent</a></td><td class="desc">Provides a <a class="el" href="d5/dac/classugrpc_1_1client_1_1ClientFactory.html" title="Creates generated gRPC clients. Has a minimal built-in channel cache: as long as a channel to the sam...">ClientFactory</a> in the component system </td></tr>
<tr id="row_123_0_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="d7/d9a/classugrpc_1_1server_1_1ServerComponent.html" target="_self">ugrpc::server::ServerComponent</a></td><td class="desc">Component that configures and manages the gRPC server </td></tr>
<tr id="row_123_0_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="df/d19/classugrpc_1_1server_1_1ServiceComponentBase.html" target="_self">ugrpc::server::ServiceComponentBase</a></td><td class="desc">Base class for all the gRPC service components </td></tr>
<tr id="row_123_0_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="d8/d65/classurabbitmq_1_1ConsumerComponentBase.html" target="_self">urabbitmq::ConsumerComponentBase</a></td><td class="desc">Base component for your consumers. Basically a <code><a class="el" href="d2/d52/classurabbitmq_1_1ConsumerBase.html" title="Base class for your consumers. You should derive from it and override Process method,...">ConsumerBase</a></code> but in a nice component-ish way </td></tr>
<tr id="row_123_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="d4/da4/classcomponents_1_1Logging.html" target="_self">components::Logging</a></td><td class="desc">Logging component </td></tr>
<tr id="row_123_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="d0/d7a/classcomponents_1_1LoggingConfigurator.html" target="_self">components::LoggingConfigurator</a></td><td class="desc">Helper component to configure logging </td></tr>
<tr id="row_123_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="dc/d21/classcomponents_1_1ManagerControllerComponent.html" target="_self">components::ManagerControllerComponent</a></td><td class="desc">Component that prepares the engine internals and starts all the other components </td></tr>
<tr id="row_123_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/de2/classcomponents_1_1TestsuiteSupport.html" target="_self">components::TestsuiteSupport</a></td><td class="desc">Testsuite support component </td></tr>
<tr id="row_123_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="d4/d23/classcomponents_1_1Tracer.html" target="_self">components::Tracer</a></td><td class="desc">Component that initializes the request tracing facilities </td></tr>
<tr id="row_123_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/d4a/classos__signals_1_1ProcessorComponent.html" target="_self">os_signals::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_124_" class="even"><td class="entry"><span style="width:16px;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">components::ComponentContext</a></td><td class="desc">Class to retrieve other components </td></tr>
<tr id="row_125_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d30/classtestsuite_1_1ComponentControl.html" target="_self">testsuite::ComponentControl</a></td><td class="desc">Component control interface for testsuite </td></tr>
<tr id="row_126_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d67/classtestsuite_1_1ComponentInvalidatorHolder.html" target="_self">testsuite::ComponentInvalidatorHolder</a></td><td class="desc">RAII helper for testsuite registration </td></tr>
<tr id="row_127_" class="odd"><td class="entry"><span style="width:16px;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">components::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_128_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::CompositeFieldDef</a></td><td class="desc">Description of a field in a user-defined composite type, for type checking </td></tr>
<tr id="row_129_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::CompositeTypeDescription</a></td><td class="desc">PostgreSQL composite type description </td></tr>
<tr id="row_130_" class="even"><td class="entry"><span style="width:16px;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">moodycamel::ConcurrentQueue< T, Traits ></a></td><td class="desc"></td></tr>
<tr id="row_131_" class="odd"><td class="entry"><span style="width:16px;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">moodycamel::ConcurrentQueue< T ></a></td><td class="desc"></td></tr>
<tr id="row_132_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_132_" class="arrow" onclick="toggleFolder('132_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::conditional_t</b></td><td class="desc"></td></tr>
<tr id="row_132_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/d55/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01T_00_01std_1_1enable__if__t_3_9traits_1_1kIsSpec77621de19dbb21b0ba95d29025398217.html" target="_self">storages::postgres::io::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_132_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="db/d7e/structstorages_1_1postgres_1_1io_1_1traits_1_1ContainerFinalElement.html" target="_self">storages::postgres::io::traits::ContainerFinalElement< T ></a></td><td class="desc">Detect type of multidimensional C++ container </td></tr>
<tr id="row_132_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/dfb/structstorages_1_1postgres_1_1io_1_1traits_1_1FixedDimensions.html" target="_self">storages::postgres::io::traits::FixedDimensions< T ></a></td><td class="desc"></td></tr>
<tr id="row_132_3_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_132_3_" class="arrow" onclick="toggleFolder('132_3_')">►</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">storages::postgres::io::traits::RowCategory< T ></a></td><td class="desc"></td></tr>
<tr id="row_132_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="da/d9a/structstorages_1_1postgres_1_1io_1_1traits_1_1RowCategory_3_1_1utils_1_1StrongTypedef_3_01Tag_00a475f9e72ca0f19000d262961377c32b.html" target="_self">storages::postgres::io::traits::RowCategory<::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_133_" class="odd"><td class="entry"><span style="width:16px;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">engine::ConditionVariable</a></td><td class="desc">Std::condition_variable replacement for asynchronous tasks </td></tr>
<tr id="row_134_" class="even"><td class="entry"><span style="width:16px;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">cache::Config</a></td><td class="desc"></td></tr>
<tr id="row_135_" class="odd"><td class="entry"><span style="width:16px;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">dump::Config</a></td><td class="desc"></td></tr>
<tr id="row_136_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d9e/classstorages_1_1redis_1_1Config.html" target="_self">storages::redis::Config</a></td><td class="desc"></td></tr>
<tr id="row_137_" class="odd"><td class="entry"><span style="width:16px;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">cache::ConfigPatch</a></td><td class="desc"></td></tr>
<tr id="row_138_" class="even"><td class="entry"><span style="width:16px;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">dump::ConfigPatch</a></td><td class="desc"></td></tr>
<tr id="row_139_" class="odd"><td class="entry"><span style="width:16px;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">redis::ConnectionInfo</a></td><td class="desc"></td></tr>
<tr id="row_140_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::ConnectionSettings</a></td><td class="desc"></td></tr>
<tr id="row_141_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::ConnectionStatistics< Counter, MmaAccumulator ></a></td><td class="desc">Template connection statistics storage </td></tr>
<tr id="row_142_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d52/classurabbitmq_1_1ConsumerBase.html" target="_self">urabbitmq::ConsumerBase</a></td><td class="desc">Base class for your consumers. You should derive from it and override <code>Process</code> method, which gets called when a new message arrives from the broker </td></tr>
<tr id="row_143_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d3f/structurabbitmq_1_1ConsumerSettings.html" target="_self">urabbitmq::ConsumerSettings</a></td><td class="desc">Consumer settings struct </td></tr>
<tr id="row_144_" class="even"><td class="entry"><span style="width:16px;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">http::ContentType</a></td><td class="desc">Content-Type representation </td></tr>
<tr id="row_145_" class="odd"><td class="entry"><span style="width:16px;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">http::ContentTypeHash</a></td><td class="desc"></td></tr>
<tr id="row_146_" class="even"><td class="entry"><span style="width:16px;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">congestion_control::Controller</a></td><td class="desc"></td></tr>
<tr id="row_147_" class="odd"><td class="entry"><span style="width:16px;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">congestion_control::ControllerInfo</a></td><td class="desc"></td></tr>
<tr id="row_148_" class="even"><td class="entry"><span style="width:16px;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">server::http::Cookie</a></td><td class="desc">HTTP response cookie </td></tr>
<tr id="row_149_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::operations::Count</a></td><td class="desc">Counts documents matching the filter </td></tr>
<tr id="row_150_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dc0/classstorages_1_1redis_1_1ScanOptionsBase_1_1Count.html" target="_self">storages::redis::ScanOptionsBase::Count</a></td><td class="desc"></td></tr>
<tr id="row_151_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::operations::CountApprox</a></td><td class="desc">Returns approximate number of documents in a collection </td></tr>
<tr id="row_152_" class="even"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::CppToClickhouse< T ></a></td><td class="desc"></td></tr>
<tr id="row_153_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_153_" class="arrow" onclick="toggleFolder('153_')">►</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">storages::postgres::io::CppToPg< T, Enable ></a></td><td class="desc">Detect mapping of a C++ type to Postgres type </td></tr>
<tr id="row_153_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/da2/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01Null_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::CppToPg< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_153_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="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">storages::postgres::io::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_153_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/de4/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01std_1_1optional_3_01T_01_4_00_01std_1_1enable__i59ff6bda57ba9251399a275f80eaeac9.html" target="_self">storages::postgres::io::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_153_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="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">storages::postgres::io::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_153_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/d4b/structstorages_1_1postgres_1_1io_1_1CppToPg_3_1_1utils_1_1StrongTypedef_3_01Tag_00_01T_00_01Ops_c955596cf331083066e4b47902f5e080.html" target="_self">storages::postgres::io::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_154_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_154_" class="arrow" onclick="toggleFolder('154_')">►</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">storages::postgres::io::CppToPg< std::underlying_type_t< T > ></a></td><td class="desc"></td></tr>
<tr id="row_154_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="dd/d58/structstorages_1_1postgres_1_1io_1_1CppToPg_3_01T_00_01traits_1_1EnableIfCanUseEnumAsStrongTypedef_3_01T_01_4_01_4.html" target="_self">storages::postgres::io::CppToPg< T, traits::EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_155_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::CppToSystemPg< T ></a></td><td class="desc">Primary template for declaring mapping to a PostgreSQL system type </td></tr>
<tr id="row_156_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::CppToUserPg< T ></a></td><td class="desc">Primary template for declaring mapping to a PostgreSQL user type </td></tr>
<tr id="row_157_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/df3/classutils_1_1CpuRelax.html" target="_self">utils::CpuRelax</a></td><td class="desc"></td></tr>
<tr id="row_158_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dfe/structutils_1_1statistics_1_1MinMaxAvg_1_1Current.html" target="_self">utils::statistics::MinMaxAvg< ValueType, AverageType >::Current</a></td><td class="desc"></td></tr>
<tr id="row_159_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/dbe/classstorages_1_1mongo_1_1Cursor.html" target="_self">storages::mongo::Cursor</a></td><td class="desc">Interface for MongoDB query cursors </td></tr>
<tr id="row_160_" class="even"><td class="entry"><span style="width:16px;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">congestion_control::Sensor::Data</a></td><td class="desc"></td></tr>
<tr id="row_161_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::Database</a></td><td class="desc">Object for accessing PostgreSQL database instance (sharded or not) </td></tr>
<tr id="row_162_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><b>DataType</b></td><td class="desc"></td></tr>
<tr id="row_163_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d34/classutils_1_1datetime_1_1Date.html" target="_self">utils::datetime::Date</a></td><td class="desc"><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.">Date</a> in format YYYY-MM-DD, std::chrono::year_month_day like type </td></tr>
<tr id="row_164_" class="even"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::columns::DateTime64Column< Precision, T ></a></td><td class="desc">Helper class for instantiating DateTime64 columns </td></tr>
<tr id="row_165_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d73/structstorages_1_1postgres_1_1DBTypeDescription.html" target="_self">storages::postgres::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_166_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::DBTypeName</a></td><td class="desc">Identity for a PostgreSQL type name </td></tr>
<tr id="row_167_" class="odd"><td class="entry"><span style="width:16px;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">engine::Deadline</a></td><td class="desc">Internal representation of a deadline time point </td></tr>
<tr id="row_168_" class="even"><td class="entry"><span style="width:16px;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">decimal64::Decimal< Prec, RoundPolicy_ ></a></td><td class="desc">Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money </td></tr>
<tr id="row_169_" class="odd"><td class="entry"><span style="width:16px;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">formats::bson::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_170_" class="even"><td class="entry"><span style="width:16px;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">formats::bson::Value::DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_171_" class="odd"><td class="entry"><span style="width:16px;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">formats::json::Value::DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_172_" class="even"><td class="entry"><span style="width:16px;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">formats::yaml::Value::DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_173_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d2e/structyaml__config_1_1YamlConfig_1_1DefaultConstructed.html" target="_self">yaml_config::YamlConfig::DefaultConstructed</a></td><td class="desc"></td></tr>
<tr id="row_174_" class="even"><td class="entry"><span style="width:16px;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">decimal64::DefRoundPolicy</a></td><td class="desc">Default rounding. Fast, rounds to nearest </td></tr>
<tr id="row_175_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::bulk_ops::Delete</a></td><td class="desc">Deletes documents as part of bulk operation </td></tr>
<tr id="row_176_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::operations::Delete</a></td><td class="desc">Deletes documents </td></tr>
<tr id="row_177_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_177_" class="arrow" onclick="toggleFolder('177_')">►</span><span class="icona"><span class="icon">C</span></span><b>decltypedetail::DetectBufferCategory</b></td><td class="desc"></td></tr>
<tr id="row_177_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/ddb/structstorages_1_1postgres_1_1io_1_1traits_1_1TypeBufferCategory.html" target="_self">storages::postgres::io::traits::TypeBufferCategory< T ></a></td><td class="desc"></td></tr>
<tr id="row_178_" class="even"><td class="entry"><span style="width:16px;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">dist_lock::DistLockedWorker</a></td><td class="desc"></td></tr>
<tr id="row_179_" class="odd"><td class="entry"><span style="width:16px;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">dist_lock::DistLockSettings</a></td><td class="desc">Distributed lock settings </td></tr>
<tr id="row_180_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_180_" class="arrow" onclick="toggleFolder('180_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d8e/classdist__lock_1_1DistLockStrategyBase.html" target="_self">dist_lock::DistLockStrategyBase</a></td><td class="desc">Interface for distributed lock strategies </td></tr>
<tr id="row_180_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/d22/classstorages_1_1mongo_1_1DistLockStrategy.html" target="_self">storages::mongo::DistLockStrategy</a></td><td class="desc">Strategy for mongodb-based distributed locking </td></tr>
<tr id="row_180_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/d02/classstorages_1_1postgres_1_1DistLockStrategy.html" target="_self">storages::postgres::DistLockStrategy</a></td><td class="desc">Postgres distributed locking strategy </td></tr>
<tr id="row_181_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d5f/structutest_1_1DnsServerMock_1_1DnsAnswer.html" target="_self">utest::DnsServerMock::DnsAnswer</a></td><td class="desc"></td></tr>
<tr id="row_182_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d60/structutest_1_1DnsServerMock_1_1DnsQuery.html" target="_self">utest::DnsServerMock::DnsQuery</a></td><td class="desc"></td></tr>
<tr id="row_183_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d50/classutest_1_1DnsServerMock.html" target="_self">utest::DnsServerMock</a></td><td class="desc"></td></tr>
<tr id="row_184_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::Cursor::Iterator::DocHolder</a></td><td class="desc"></td></tr>
<tr id="row_185_" class="odd"><td class="entry"><span style="width:16px;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">dynamic_config::DocsMap</a></td><td class="desc"></td></tr>
<tr id="row_186_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::DsnOptions</a></td><td class="desc"></td></tr>
<tr id="row_187_" class="odd"><td class="entry"><span style="width:16px;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">dump::DumpableEntity</a></td><td class="desc"></td></tr>
<tr id="row_188_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dc0/classtestsuite_1_1DumpControl.html" target="_self">testsuite::DumpControl</a></td><td class="desc">Dumper control interface for testsuite </td></tr>
<tr id="row_189_" class="odd"><td class="entry"><span style="width:16px;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">dump::Dumper</a></td><td class="desc">Manages dumps of a cache-like component </td></tr>
<tr id="row_190_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/dac/classtestsuite_1_1DumperRegistrationHolder.html" target="_self">testsuite::DumperRegistrationHolder</a></td><td class="desc">RAII helper for testsuite registration </td></tr>
<tr id="row_191_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_191_" class="arrow" onclick="toggleFolder('191_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::enable_shared_from_this</b></td><td class="desc"></td></tr>
<tr id="row_191_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/df5/classclients_1_1http_1_1Request.html" target="_self">clients::http::Request</a></td><td class="desc">Class for creating and performing new http requests </td></tr>
<tr id="row_191_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/d97/classconcurrent_1_1GenericQueue.html" target="_self">concurrent::GenericQueue< T, MultipleProducer, MultipleConsumer ></a></td><td class="desc"></td></tr>
<tr id="row_191_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="d0/d92/classconcurrent_1_1MpscQueue.html" target="_self">concurrent::MpscQueue< T ></a></td><td class="desc"></td></tr>
<tr id="row_191_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/d26/structredis_1_1Command.html" target="_self">redis::Command</a></td><td class="desc"></td></tr>
<tr id="row_191_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="d2/d53/classtracing_1_1Tracer.html" target="_self">tracing::Tracer</a></td><td class="desc"></td></tr>
<tr id="row_191_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="da/d66/classurabbitmq_1_1Client.html" target="_self">urabbitmq::Client</a></td><td class="desc">Interface for communicating with a RabbitMQ cluster </td></tr>
<tr id="row_192_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d1b/classutils_1_1encoding_1_1EncodeTskvPutCharDefault.html" target="_self">utils::encoding::EncodeTskvPutCharDefault< T ></a></td><td class="desc"></td></tr>
<tr id="row_193_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d8c/classutils_1_1encoding_1_1EncodeTskvPutCharDefault_3_01std_1_1ostream_01_4.html" target="_self">utils::encoding::EncodeTskvPutCharDefault< std::ostream ></a></td><td class="desc"></td></tr>
<tr id="row_194_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d87/classutils_1_1encoding_1_1EncodeTskvPutCharDefault_3_01std_1_1string_01_4.html" target="_self">utils::encoding::EncodeTskvPutCharDefault< std::string ></a></td><td class="desc"></td></tr>
<tr id="row_195_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d89/structurabbitmq_1_1EndpointInfo.html" target="_self">urabbitmq::EndpointInfo</a></td><td class="desc"></td></tr>
<tr id="row_196_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d52/classutils_1_1statistics_1_1Entry.html" target="_self">utils::statistics::Entry</a></td><td class="desc"></td></tr>
<tr id="row_197_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::EnumMappingBase< Enum ></a></td><td class="desc"></td></tr>
<tr id="row_198_" class="even"><td class="entry"><span style="width:16px;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">engine::subprocess::EnvironmentVariables</a></td><td class="desc"></td></tr>
<tr id="row_199_" class="odd"><td class="entry"><span style="width:16px;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">engine::subprocess::EnvironmentVariablesUpdate</a></td><td class="desc"></td></tr>
<tr id="row_200_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_200_" class="arrow" onclick="toggleFolder('200_')">►</span><span class="icona"><span class="icon">C</span></span><b>Equal</b></td><td class="desc"></td></tr>
<tr id="row_200_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="dd/ded/classutils_1_1CachedHashKeyEqual.html" target="_self">utils::CachedHashKeyEqual< Equal, class ></a></td><td class="desc">Compares <a class="el" href="d8/df1/structutils_1_1CachedHash.html" title="Holds the key and its hash for faster comparisons and hashing.">utils::CachedHash</a> only by keys </td></tr>
<tr id="row_201_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d11/classstorages_1_1redis_1_1RequestEvalSha_1_1EvalShaResult.html" target="_self">storages::redis::RequestEvalSha< ScriptResult, ReplyType >::EvalShaResult</a></td><td class="desc"></td></tr>
<tr id="row_202_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_202_" class="arrow" onclick="toggleFolder('202_')">►</span><span class="icona"><span class="icon">C</span></span><b>Exception</b></td><td class="desc"></td></tr>
<tr id="row_202_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_202_0_" class="arrow" onclick="toggleFolder('202_0_')">►</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">pytest_userver.client.BaseError</a></td><td class="desc"></td></tr>
<tr id="row_202_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="da/d95/classpytest__userver_1_1client_1_1ConfigurationError.html" target="_self">pytest_userver.client.ConfigurationError</a></td><td class="desc"></td></tr>
<tr id="row_202_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_202_0_1_" class="arrow" onclick="toggleFolder('202_0_1_')">►</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">pytest_userver.client.TestsuiteTaskError</a></td><td class="desc"></td></tr>
<tr id="row_202_0_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="d2/d54/classpytest__userver_1_1client_1_1TestsuiteTaskConflict.html" target="_self">pytest_userver.client.TestsuiteTaskConflict</a></td><td class="desc"></td></tr>
<tr id="row_202_0_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="d3/d5d/classpytest__userver_1_1client_1_1TestsuiteTaskFailed.html" target="_self">pytest_userver.client.TestsuiteTaskFailed</a></td><td class="desc"></td></tr>
<tr id="row_202_0_1_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="d7/d2f/classpytest__userver_1_1client_1_1TestsuiteTaskNotFound.html" target="_self">pytest_userver.client.TestsuiteTaskNotFound</a></td><td class="desc"></td></tr>
<tr id="row_202_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_202_1_" class="arrow" onclick="toggleFolder('202_1_')">►</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">pytest_userver.plugins.testpoint.BaseError</a></td><td class="desc"></td></tr>
<tr id="row_202_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="d5/d1e/classpytest__userver_1_1plugins_1_1testpoint_1_1UnregisteredTestpointError.html" target="_self">pytest_userver.plugins.testpoint.UnregisteredTestpointError</a></td><td class="desc"></td></tr>
<tr id="row_203_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_203_" class="arrow" onclick="toggleFolder('203_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::exception</b></td><td class="desc">STL class </td></tr>
<tr id="row_203_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_0_" class="arrow" onclick="toggleFolder('203_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d17/classclients_1_1http_1_1BaseException.html" target="_self">clients::http::BaseException</a></td><td class="desc">Exception with string </td></tr>
<tr id="row_203_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_0_0_" class="arrow" onclick="toggleFolder('203_0_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de2/classclients_1_1http_1_1BaseCodeException.html" target="_self">clients::http::BaseCodeException</a></td><td class="desc">Exception with string and error_code </td></tr>
<tr id="row_203_0_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="de/dff/classclients_1_1http_1_1AuthFailedException.html" target="_self">clients::http::AuthFailedException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d7/d82/classclients_1_1http_1_1BadArgumentException.html" target="_self">clients::http::BadArgumentException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="db/d8c/classclients_1_1http_1_1DNSProblemException.html" target="_self">clients::http::DNSProblemException</a></td><td class="desc"></td></tr>
<tr id="row_203_0_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="d3/dbd/classclients_1_1http_1_1NetworkProblemException.html" target="_self">clients::http::NetworkProblemException</a></td><td class="desc"></td></tr>
<tr id="row_203_0_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="d8/ddc/classclients_1_1http_1_1SSLException.html" target="_self">clients::http::SSLException</a></td><td class="desc"></td></tr>
<tr id="row_203_0_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="d3/d1f/classclients_1_1http_1_1TechnicalError.html" target="_self">clients::http::TechnicalError</a></td><td class="desc"></td></tr>
<tr id="row_203_0_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="d5/de1/classclients_1_1http_1_1TooManyRedirectsException.html" target="_self">clients::http::TooManyRedirectsException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d0/dda/classclients_1_1http_1_1CancelException.html" target="_self">clients::http::CancelException</a></td><td class="desc"></td></tr>
<tr id="row_203_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_0_2_" class="arrow" onclick="toggleFolder('203_0_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d4f/classclients_1_1http_1_1HttpException.html" target="_self">clients::http::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_203_0_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="d0/d63/classclients_1_1http_1_1HttpClientException.html" target="_self">clients::http::HttpClientException</a></td><td class="desc"></td></tr>
<tr id="row_203_0_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="dd/d66/classclients_1_1http_1_1HttpServerException.html" target="_self">clients::http::HttpServerException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d8/de6/classclients_1_1http_1_1TimeoutException.html" target="_self">clients::http::TimeoutException</a></td><td class="desc"></td></tr>
<tr id="row_203_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/d6d/classdist__lock_1_1LockIsAcquiredByAnotherHostException.html" target="_self">dist_lock::LockIsAcquiredByAnotherHostException</a></td><td class="desc">Indicates that lock cannot be acquired because it's busy </td></tr>
<tr id="row_203_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_2_" class="arrow" onclick="toggleFolder('203_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d84/classformats_1_1json_1_1Exception.html" target="_self">formats::json::Exception</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d8/d1f/classformats_1_1json_1_1BadStreamException.html" target="_self">formats::json::BadStreamException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="de/d49/classformats_1_1json_1_1ConversionException.html" target="_self">formats::json::ConversionException</a></td><td class="desc">Conversion error </td></tr>
<tr id="row_203_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="d0/da8/classformats_1_1json_1_1MemberMissingException.html" target="_self">formats::json::MemberMissingException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="de/d4c/classformats_1_1json_1_1OutOfBoundsException.html" target="_self">formats::json::OutOfBoundsException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="de/dff/classformats_1_1json_1_1ParseException.html" target="_self">formats::json::ParseException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="db/da0/classformats_1_1json_1_1TypeMismatchException.html" target="_self">formats::json::TypeMismatchException</a></td><td class="desc"></td></tr>
<tr id="row_203_2_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_2_6_" class="arrow" onclick="toggleFolder('203_2_6_')">►</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">formats::json::parser::BaseError</a></td><td class="desc"></td></tr>
<tr id="row_203_2_6_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/da4/classformats_1_1json_1_1parser_1_1InternalParseError.html" target="_self">formats::json::parser::InternalParseError</a></td><td class="desc"></td></tr>
<tr id="row_203_2_6_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/d03/classformats_1_1json_1_1parser_1_1ParseError.html" target="_self">formats::json::parser::ParseError</a></td><td class="desc"></td></tr>
<tr id="row_203_3_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_3_" class="arrow" onclick="toggleFolder('203_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d9a/classformats_1_1yaml_1_1Exception.html" target="_self">formats::yaml::Exception</a></td><td class="desc"></td></tr>
<tr id="row_203_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/d15/classformats_1_1yaml_1_1BadStreamException.html" target="_self">formats::yaml::BadStreamException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d4/dcb/classformats_1_1yaml_1_1MemberMissingException.html" target="_self">formats::yaml::MemberMissingException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d1/d0b/classformats_1_1yaml_1_1OutOfBoundsException.html" target="_self">formats::yaml::OutOfBoundsException</a></td><td class="desc"></td></tr>
<tr id="row_203_3_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="d9/d8f/classformats_1_1yaml_1_1ParseException.html" target="_self">formats::yaml::ParseException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="de/d64/classformats_1_1yaml_1_1PathPrefixException.html" target="_self">formats::yaml::PathPrefixException</a></td><td class="desc"></td></tr>
<tr id="row_203_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="d0/df6/classformats_1_1yaml_1_1TypeMismatchException.html" target="_self">formats::yaml::TypeMismatchException</a></td><td class="desc"></td></tr>
<tr id="row_203_4_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_4_" class="arrow" onclick="toggleFolder('203_4_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::logic_error</b></td><td class="desc">STL class </td></tr>
<tr id="row_203_4_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/d3e/classcache_1_1ConfigError.html" target="_self">cache::ConfigError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_5_" class="arrow" onclick="toggleFolder('203_5_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::runtime_error</b></td><td class="desc">STL class </td></tr>
<tr id="row_203_5_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="d9/d52/classcache_1_1EmptyCacheError.html" target="_self">cache::EmptyCacheError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_1_" class="arrow" onclick="toggleFolder('203_5_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d54/classclients_1_1dns_1_1ResolverException.html" target="_self">clients::dns::ResolverException</a></td><td class="desc">Generic resolver error </td></tr>
<tr id="row_203_5_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="dc/d1a/classclients_1_1dns_1_1InvalidConfigException.html" target="_self">clients::dns::InvalidConfigException</a></td><td class="desc">Configuration error </td></tr>
<tr id="row_203_5_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="dd/d02/classclients_1_1dns_1_1NotResolvedException.html" target="_self">clients::dns::NotResolvedException</a></td><td class="desc">Host resolution error </td></tr>
<tr id="row_203_5_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="d7/da8/classclients_1_1dns_1_1UnsupportedDomainException.html" target="_self">clients::dns::UnsupportedDomainException</a></td><td class="desc">Unsupported domain error </td></tr>
<tr id="row_203_5_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="d2/d43/classcomponents_1_1ComponentsLoadCancelledException.html" target="_self">components::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_203_5_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_3_" class="arrow" onclick="toggleFolder('203_5_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/dfa/classdecimal64_1_1DecimalError.html" target="_self">decimal64::DecimalError</a></td><td class="desc">The base class for Decimal-related exceptions </td></tr>
<tr id="row_203_5_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="da/da6/classdecimal64_1_1DivisionByZeroError.html" target="_self">decimal64::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_203_5_3_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/db9/classdecimal64_1_1OutOfBoundsError.html" target="_self">decimal64::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_203_5_3_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="da/d3e/classdecimal64_1_1ParseError.html" target="_self">decimal64::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_203_5_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="dc/d09/classdump_1_1Error.html" target="_self">dump::Error</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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/dc1/classengine_1_1TaskCancelledException.html" target="_self">engine::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_203_5_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="dc/d5a/classengine_1_1UnreachableSemaphoreLockError.html" target="_self">engine::UnreachableSemaphoreLockError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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/dae/classengine_1_1WaitInterruptedException.html" target="_self">engine::WaitInterruptedException</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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="d3/d6f/classengine_1_1io_1_1AddrException.html" target="_self">engine::io::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_203_5_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="de/dc6/classhttp_1_1MalformedContentType.html" target="_self">http::MalformedContentType</a></td><td class="desc">Content-Type parsing error </td></tr>
<tr id="row_203_5_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_10_" class="arrow" onclick="toggleFolder('203_5_10_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dff/classredis_1_1Exception.html" target="_self">redis::Exception</a></td><td class="desc">Generic redis-related exception </td></tr>
<tr id="row_203_5_10_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="db/d84/classredis_1_1ClientNotConnectedException.html" target="_self">redis::ClientNotConnectedException</a></td><td class="desc">Cannot connect to some redis server shard </td></tr>
<tr id="row_203_5_10_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="d6/da6/classredis_1_1InvalidArgumentException.html" target="_self">redis::InvalidArgumentException</a></td><td class="desc">Invalid redis command argument </td></tr>
<tr id="row_203_5_10_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/ddc/classredis_1_1KeyHasNoExpirationException.html" target="_self">redis::KeyHasNoExpirationException</a></td><td class="desc">Trying to get expiration from a nonexistent or a persistent key </td></tr>
<tr id="row_203_5_10_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="d1/d79/classredis_1_1ParseConfigException.html" target="_self">redis::ParseConfigException</a></td><td class="desc">Invalid config format </td></tr>
<tr id="row_203_5_10_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="d3/da8/classredis_1_1ParseReplyException.html" target="_self">redis::ParseReplyException</a></td><td class="desc">Invalid reply data format </td></tr>
<tr id="row_203_5_10_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="d7/d1d/classredis_1_1RequestCancelledException.html" target="_self">redis::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_203_5_10_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/d8b/classredis_1_1RequestFailedException.html" target="_self">redis::RequestFailedException</a></td><td class="desc">No reply from redis server </td></tr>
<tr id="row_203_5_10_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="da/dd8/classstorages_1_1redis_1_1EmptyTransactionException.html" target="_self">storages::redis::EmptyTransactionException</a></td><td class="desc"></td></tr>
<tr id="row_203_5_10_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="d2/de6/classstorages_1_1redis_1_1NotStartedTransactionException.html" target="_self">storages::redis::NotStartedTransactionException</a></td><td class="desc"></td></tr>
<tr id="row_203_5_10_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="d5/d22/classstorages_1_1redis_1_1ScanRequest_1_1GetAfterEofException.html" target="_self">storages::redis::ScanRequest< scan_tag >::GetAfterEofException</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_11_" class="arrow" onclick="toggleFolder('203_5_11_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d7f/classserver_1_1handlers_1_1CustomHandlerException.html" target="_self">server::handlers::CustomHandlerException</a></td><td class="desc">Base class for handler exceptions </td></tr>
<tr id="row_203_5_11_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_11_0_" class="arrow" onclick="toggleFolder('203_5_11_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< HandlerErrorCode::kClientError ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_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="db/d63/classserver_1_1handlers_1_1ClientError.html" target="_self">server::handlers::ClientError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_11_1_" class="arrow" onclick="toggleFolder('203_5_11_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< HandlerErrorCode::kServerSideError ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_1_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="d3/d98/classserver_1_1handlers_1_1InternalServerError.html" target="_self">server::handlers::InternalServerError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_11_2_" class="arrow" onclick="toggleFolder('203_5_11_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< HandlerErrorCode::kRequestParseError ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_2_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/ddf/classserver_1_1handlers_1_1RequestParseError.html" target="_self">server::handlers::RequestParseError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_11_3_" class="arrow" onclick="toggleFolder('203_5_11_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< HandlerErrorCode::kResourceNotFound ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_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="d2/d91/classserver_1_1handlers_1_1ResourceNotFound.html" target="_self">server::handlers::ResourceNotFound</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_4_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_11_4_" class="arrow" onclick="toggleFolder('203_5_11_4_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< HandlerErrorCode::kUnauthorized ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_4_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="d1/d7b/classserver_1_1handlers_1_1Unauthorized.html" target="_self">server::handlers::Unauthorized</a></td><td class="desc"></td></tr>
<tr id="row_203_5_11_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="d5/d58/classserver_1_1handlers_1_1ExceptionWithCode.html" target="_self">server::handlers::ExceptionWithCode< Code ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_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="df/d78/classstorages_1_1clickhouse_1_1Cluster_1_1NoAvailablePoolError.html" target="_self">storages::clickhouse::Cluster::NoAvailablePoolError</a></td><td class="desc">Exception that is thrown if all specified endpoints are unavailable </td></tr>
<tr id="row_203_5_13_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_13_" class="arrow" onclick="toggleFolder('203_5_13_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d3d/classstorages_1_1postgres_1_1Error.html" target="_self">storages::postgres::Error</a></td><td class="desc">Base class for all exceptions that may be thrown by the driver </td></tr>
<tr id="row_203_5_13_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_13_0_" class="arrow" onclick="toggleFolder('203_5_13_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d74/classstorages_1_1postgres_1_1LogicError.html" target="_self">storages::postgres::LogicError</a></td><td class="desc">Base Postgres logic error. Reports errors that are consequences of erroneous driver usage, such as invalid query syntax, absence of appropriate parsers, out of range errors etc. These can be avoided by fixing code </td></tr>
<tr id="row_203_5_13_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_0_" class="arrow" onclick="toggleFolder('203_5_13_0_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d1b/classstorages_1_1postgres_1_1ArrayError.html" target="_self">storages::postgres::ArrayError</a></td><td class="desc">Base error when working with array types </td></tr>
<tr id="row_203_5_13_0_0_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="d7/d98/classstorages_1_1postgres_1_1DimensionMismatch.html" target="_self">storages::postgres::DimensionMismatch</a></td><td class="desc">Array received from postgres has different dimensions from those of C++ container </td></tr>
<tr id="row_203_5_13_0_0_1_" 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="da/d07/classstorages_1_1postgres_1_1InvalidDimensions.html" target="_self">storages::postgres::InvalidDimensions</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_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/d44/classstorages_1_1postgres_1_1BoundedRangeError.html" target="_self">storages::postgres::BoundedRangeError</a></td><td class="desc">PostgreSQL range type has at least one end unbound </td></tr>
<tr id="row_203_5_13_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_2_" class="arrow" onclick="toggleFolder('203_5_13_0_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d70/classstorages_1_1postgres_1_1EnumerationError.html" target="_self">storages::postgres::EnumerationError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_2_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="d0/d05/classstorages_1_1postgres_1_1InvalidEnumerationLiteral.html" target="_self">storages::postgres::InvalidEnumerationLiteral</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_2_1_" 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="da/dc8/classstorages_1_1postgres_1_1InvalidEnumerationValue.html" target="_self">storages::postgres::InvalidEnumerationValue</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_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="d9/d89/classstorages_1_1postgres_1_1InvalidInputFormat.html" target="_self">storages::postgres::InvalidInputFormat</a></td><td class="desc">Invalid format for input data </td></tr>
<tr id="row_203_5_13_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="d2/d9d/classstorages_1_1postgres_1_1NotImplemented.html" target="_self">storages::postgres::NotImplemented</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_5_" class="arrow" onclick="toggleFolder('203_5_13_0_5_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d86/classstorages_1_1postgres_1_1NumericError.html" target="_self">storages::postgres::NumericError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_5_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="da/d3b/classstorages_1_1postgres_1_1InvalidRepresentation.html" target="_self">storages::postgres::InvalidRepresentation</a></td><td class="desc">Integral representation for a numeric contains invalid data </td></tr>
<tr id="row_203_5_13_0_5_1_" 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="d0/d40/classstorages_1_1postgres_1_1NumericOverflow.html" target="_self">storages::postgres::NumericOverflow</a></td><td class="desc">Value in PostgreSQL binary buffer cannot be represented by a given C++ type </td></tr>
<tr id="row_203_5_13_0_5_2_" 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="d0/dee/classstorages_1_1postgres_1_1ValueIsNaN.html" target="_self">storages::postgres::ValueIsNaN</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_6_" class="arrow" onclick="toggleFolder('203_5_13_0_6_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d9d/classstorages_1_1postgres_1_1ResultSetError.html" target="_self">storages::postgres::ResultSetError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_6_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="d3/d1e/classstorages_1_1postgres_1_1FieldIndexOutOfBounds.html" target="_self">storages::postgres::FieldIndexOutOfBounds</a></td><td class="desc">Result set has less columns that the requested index </td></tr>
<tr id="row_203_5_13_0_6_1_" 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="d5/db8/classstorages_1_1postgres_1_1FieldNameDoesntExist.html" target="_self">storages::postgres::FieldNameDoesntExist</a></td><td class="desc">Result set doesn't have field with the requested name </td></tr>
<tr id="row_203_5_13_0_6_2_" 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="d9/de9/classstorages_1_1postgres_1_1FieldTupleMismatch.html" target="_self">storages::postgres::FieldTupleMismatch</a></td><td class="desc">A row was requested to be parsed based on field names/indexed, the count of names/indexes doesn't match the tuple size </td></tr>
<tr id="row_203_5_13_0_6_3_" 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="d8/d2e/classstorages_1_1postgres_1_1FieldValueIsNull.html" target="_self">storages::postgres::FieldValueIsNull</a></td><td class="desc">Data extraction from a null field value to a non-nullable type requested </td></tr>
<tr id="row_203_5_13_0_6_4_" 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="df/dd8/classstorages_1_1postgres_1_1InvalidBinaryBuffer.html" target="_self">storages::postgres::InvalidBinaryBuffer</a></td><td class="desc">Binary buffer contains invalid data. Can occur when parsing binary buffers containing multiple fields </td></tr>
<tr id="row_203_5_13_0_6_5_" 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="da/d14/classstorages_1_1postgres_1_1InvalidInputBufferSize.html" target="_self">storages::postgres::InvalidInputBufferSize</a></td><td class="desc">Buffer size is invalid for a fixed-size type. Can occur when a wrong field type is requested for reply </td></tr>
<tr id="row_203_5_13_0_6_6_" 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="d5/d0d/classstorages_1_1postgres_1_1InvalidParserCategory.html" target="_self">storages::postgres::InvalidParserCategory</a></td><td class="desc"><a class="el" href="df/d31/classstorages_1_1postgres_1_1Field.html" title="Accessor to a single field in a result set's row.">Field</a> buffer contains different category of data than expected by data parser </td></tr>
<tr id="row_203_5_13_0_6_7_" 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="da/d37/classstorages_1_1postgres_1_1InvalidTupleSizeRequested.html" target="_self">storages::postgres::InvalidTupleSizeRequested</a></td><td class="desc">A tuple was requested to be parsed out of a row that doesn't have enough fields </td></tr>
<tr id="row_203_5_13_0_6_8_" 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="dd/d9a/classstorages_1_1postgres_1_1NoBinaryParser.html" target="_self">storages::postgres::NoBinaryParser</a></td><td class="desc">A field in a result set doesn't have a binary parser </td></tr>
<tr id="row_203_5_13_0_6_9_" 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/dd0/classstorages_1_1postgres_1_1NonSingleColumResultSet.html" target="_self">storages::postgres::NonSingleColumResultSet</a></td><td class="desc">A row or result set requested to be treated as a single column, but contains more than one column </td></tr>
<tr id="row_203_5_13_0_6_10_" 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="da/d2a/classstorages_1_1postgres_1_1NonSingleRowResultSet.html" target="_self">storages::postgres::NonSingleRowResultSet</a></td><td class="desc">A result set containing a single row was expected </td></tr>
<tr id="row_203_5_13_0_6_11_" 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="db/dea/classstorages_1_1postgres_1_1RowIndexOutOfBounds.html" target="_self">storages::postgres::RowIndexOutOfBounds</a></td><td class="desc">Result set has less rows than the requested row index </td></tr>
<tr id="row_203_5_13_0_6_12_" 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="d7/df0/classstorages_1_1postgres_1_1TypeCannotBeNull.html" target="_self">storages::postgres::TypeCannotBeNull</a></td><td class="desc">A value of a non-nullable type requested to be set null. Can occur if <a class="el" href="da/df0/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable.html" title="Metafunction to detect nullability of a type.">io::traits::IsNullable</a> for the type is specialised as true_type, but <a class="el" href="d1/d54/structstorages_1_1postgres_1_1io_1_1traits_1_1GetSetNull.html">io::traits::GetSetNull</a> is not specialized appropriately </td></tr>
<tr id="row_203_5_13_0_6_13_" 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="dc/dd7/classstorages_1_1postgres_1_1UnknownBufferCategory.html" target="_self">storages::postgres::UnknownBufferCategory</a></td><td class="desc">While checking result set types, failed to determine the buffer category for a type oid. The context string is formed by the <a class="el" href="d0/d5b/classstorages_1_1postgres_1_1ResultSet.html" title="PostgreSQL result set.">ResultSet</a> and will have the form of 'result set field <code>foo</code> type <code>my_schema.bar</code> field <code>baz</code> array element' </td></tr>
<tr id="row_203_5_13_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_7_" class="arrow" onclick="toggleFolder('203_5_13_0_7_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d65/classstorages_1_1postgres_1_1TransactionError.html" target="_self">storages::postgres::TransactionError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_7_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="dd/d03/classstorages_1_1postgres_1_1AlreadyInTransaction.html" target="_self">storages::postgres::AlreadyInTransaction</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_7_1_" 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="d8/dcd/classstorages_1_1postgres_1_1NotInTransaction.html" target="_self">storages::postgres::NotInTransaction</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_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="d3/db3/classstorages_1_1postgres_1_1UnsupportedInterval.html" target="_self">storages::postgres::UnsupportedInterval</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_0_9_" class="arrow" onclick="toggleFolder('203_5_13_0_9_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d1c/classstorages_1_1postgres_1_1UserTypeError.html" target="_self">storages::postgres::UserTypeError</a></td><td class="desc">Base error when working with mapped types </td></tr>
<tr id="row_203_5_13_0_9_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="d4/dcf/classstorages_1_1postgres_1_1CompositeMemberTypeMismatch.html" target="_self">storages::postgres::CompositeMemberTypeMismatch</a></td><td class="desc">PostgreSQL composite type has different member type that the C++ mapping suggests </td></tr>
<tr id="row_203_5_13_0_9_1_" 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="de/dee/classstorages_1_1postgres_1_1CompositeSizeMismatch.html" target="_self">storages::postgres::CompositeSizeMismatch</a></td><td class="desc">PostgreSQL composite type has different count of members from the C++ counterpart </td></tr>
<tr id="row_203_5_13_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_5_13_1_" class="arrow" onclick="toggleFolder('203_5_13_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d97/classstorages_1_1postgres_1_1RuntimeError.html" target="_self">storages::postgres::RuntimeError</a></td><td class="desc">Base Postgres runtime error. Reports errors that are consequences of erroneous data, misconfiguration, network errors etc </td></tr>
<tr id="row_203_5_13_1_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="d1/df6/classstorages_1_1postgres_1_1ClusterError.html" target="_self">storages::postgres::ClusterError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_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="d1/de2/classstorages_1_1postgres_1_1ConnectionBusy.html" target="_self">storages::postgres::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_203_5_13_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_5_13_1_2_" class="arrow" onclick="toggleFolder('203_5_13_1_2_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dea/classstorages_1_1postgres_1_1ConnectionError.html" target="_self">storages::postgres::ConnectionError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span id="arr_203_5_13_1_2_0_" class="arrow" onclick="toggleFolder('203_5_13_1_2_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d34/classstorages_1_1postgres_1_1ServerError.html" target="_self">storages::postgres::ServerError< ConnectionError ></a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_2_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/d4f/classstorages_1_1postgres_1_1ServerConnectionError.html" target="_self">storages::postgres::ServerConnectionError</a></td><td class="desc">Connection error reported by PostgreSQL server. Doc: <a href="https://www.postgresql.org/docs/12/static/errcodes-appendix.html">https://www.postgresql.org/docs/12/static/errcodes-appendix.html</a> Class 08 - Connection exception </td></tr>
<tr id="row_203_5_13_1_2_1_" 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/d0d/classstorages_1_1postgres_1_1ClusterUnavailable.html" target="_self">storages::postgres::ClusterUnavailable</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_2_2_" 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="dc/d36/classstorages_1_1postgres_1_1CommandError.html" target="_self">storages::postgres::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_203_5_13_1_2_3_" 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="d9/d90/classstorages_1_1postgres_1_1ConnectionFailed.html" target="_self">storages::postgres::ConnectionFailed</a></td><td class="desc">Exception is thrown when a single connection fails to connect </td></tr>
<tr id="row_203_5_13_1_2_4_" 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="d4/db0/classstorages_1_1postgres_1_1ConnectionTimeoutError.html" target="_self">storages::postgres::ConnectionTimeoutError</a></td><td class="desc">A network operation on a connection has timed out </td></tr>
<tr id="row_203_5_13_1_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="d0/d18/classstorages_1_1postgres_1_1ConnectionInterrupted.html" target="_self">storages::postgres::ConnectionInterrupted</a></td><td class="desc">A network operation was interrupted by task cancellation </td></tr>
<tr id="row_203_5_13_1_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="d9/db7/classstorages_1_1postgres_1_1InvalidConfig.html" target="_self">storages::postgres::InvalidConfig</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_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="d9/dde/classstorages_1_1postgres_1_1InvalidDSN.html" target="_self">storages::postgres::InvalidDSN</a></td><td class="desc"></td></tr>
<tr id="row_203_5_13_1_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="d9/d12/classstorages_1_1postgres_1_1PoolError.html" target="_self">storages::postgres::PoolError</a></td><td class="desc">Indicates errors during pool operation </td></tr>
<tr id="row_203_5_14_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_5_14_" class="arrow" onclick="toggleFolder('203_5_14_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/de2/classstorages_1_1secdist_1_1SecdistError.html" target="_self">storages::secdist::SecdistError</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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="d9/da1/classstorages_1_1secdist_1_1InvalidSecdistJson.html" target="_self">storages::secdist::InvalidSecdistJson</a></td><td class="desc"></td></tr>
<tr id="row_203_5_14_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="d6/d07/classstorages_1_1secdist_1_1UnknownMongoDbAlias.html" target="_self">storages::secdist::UnknownMongoDbAlias</a></td><td class="desc"></td></tr>
<tr id="row_203_5_14_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="d6/de0/classstorages_1_1secdist_1_1UnknownPostgresDbAlias.html" target="_self">storages::secdist::UnknownPostgresDbAlias</a></td><td class="desc"></td></tr>
<tr id="row_203_5_14_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="dd/d12/classstorages_1_1secdist_1_1UnknownRedisClientName.html" target="_self">storages::secdist::UnknownRedisClientName</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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="d5/d55/classtestsuite_1_1TaskAlreadyRunning.html" target="_self">testsuite::TaskAlreadyRunning</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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/d2d/classtestsuite_1_1TaskNotFound.html" target="_self">testsuite::TaskNotFound</a></td><td class="desc"></td></tr>
<tr id="row_203_5_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/db9/classutils_1_1datetime_1_1DateParseError.html" target="_self">utils::datetime::DateParseError</a></td><td class="desc">Date/time parsing error </td></tr>
<tr id="row_203_5_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="d0/d3a/classutils_1_1datetime_1_1TimezoneLookupError.html" target="_self">utils::datetime::TimezoneLookupError</a></td><td class="desc">Timezone information lookup error </td></tr>
<tr id="row_203_6_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_6_" class="arrow" onclick="toggleFolder('203_6_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d25/classugrpc_1_1client_1_1BaseError.html" target="_self">ugrpc::client::BaseError</a></td><td class="desc">Base exception for all the client errors </td></tr>
<tr id="row_203_6_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_6_0_" class="arrow" onclick="toggleFolder('203_6_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d28/classugrpc_1_1client_1_1RpcError.html" target="_self">ugrpc::client::RpcError</a></td><td class="desc">Error during an RPC </td></tr>
<tr id="row_203_6_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_6_0_0_" class="arrow" onclick="toggleFolder('203_6_0_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d7d/classugrpc_1_1client_1_1ErrorWithStatus.html" target="_self">ugrpc::client::ErrorWithStatus</a></td><td class="desc">Error with grpc::Status details </td></tr>
<tr id="row_203_6_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="d3/d0b/classugrpc_1_1client_1_1AbortedError.html" target="_self">ugrpc::client::AbortedError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="dc/d5f/classugrpc_1_1client_1_1AlreadyExistsError.html" target="_self">ugrpc::client::AlreadyExistsError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d3/dc0/classugrpc_1_1client_1_1CancelledError.html" target="_self">ugrpc::client::CancelledError</a></td><td class="desc">Concrete errors for all the error codes </td></tr>
<tr id="row_203_6_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="d6/d3e/classugrpc_1_1client_1_1DataLossError.html" target="_self">ugrpc::client::DataLossError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d2/dc6/classugrpc_1_1client_1_1DeadlineExceededError.html" target="_self">ugrpc::client::DeadlineExceededError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d3/d87/classugrpc_1_1client_1_1FailedPreconditionError.html" target="_self">ugrpc::client::FailedPreconditionError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d9/d4d/classugrpc_1_1client_1_1InternalError.html" target="_self">ugrpc::client::InternalError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d4/dc9/classugrpc_1_1client_1_1InvalidArgumentError.html" target="_self">ugrpc::client::InvalidArgumentError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d9/dc2/classugrpc_1_1client_1_1NotFoundError.html" target="_self">ugrpc::client::NotFoundError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="dd/d53/classugrpc_1_1client_1_1OutOfRangeError.html" target="_self">ugrpc::client::OutOfRangeError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d1/d8a/classugrpc_1_1client_1_1PermissionDeniedError.html" target="_self">ugrpc::client::PermissionDeniedError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d8/db2/classugrpc_1_1client_1_1ResourceExhaustedError.html" target="_self">ugrpc::client::ResourceExhaustedError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="d4/da1/classugrpc_1_1client_1_1UnauthenticatedError.html" target="_self">ugrpc::client::UnauthenticatedError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="de/df2/classugrpc_1_1client_1_1UnavailableError.html" target="_self">ugrpc::client::UnavailableError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="da/dc4/classugrpc_1_1client_1_1UnimplementedError.html" target="_self">ugrpc::client::UnimplementedError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="dc/d6c/classugrpc_1_1client_1_1UnknownError.html" target="_self">ugrpc::client::UnknownError</a></td><td class="desc"></td></tr>
<tr id="row_203_6_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="db/d86/classugrpc_1_1client_1_1RpcInterruptedError.html" target="_self">ugrpc::client::RpcInterruptedError</a></td><td class="desc">RPC failed without a status. This means that either the call got cancelled using <code>TryCancel</code>, the deadline has expired, or the channel is broken </td></tr>
<tr id="row_203_7_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_7_" class="arrow" onclick="toggleFolder('203_7_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d56/classugrpc_1_1server_1_1BaseError.html" target="_self">ugrpc::server::BaseError</a></td><td class="desc">Base exception for all the server errors </td></tr>
<tr id="row_203_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_7_0_" class="arrow" onclick="toggleFolder('203_7_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d1c/classugrpc_1_1server_1_1RpcError.html" target="_self">ugrpc::server::RpcError</a></td><td class="desc">Error during an RPC </td></tr>
<tr id="row_203_7_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="d0/dd9/classugrpc_1_1server_1_1RpcInterruptedError.html" target="_self">ugrpc::server::RpcInterruptedError</a></td><td class="desc">RPC failed without a status. This means that either the call got cancelled using <code>TryCancel</code>, the deadline has expired, or the client disconnected </td></tr>
<tr id="row_203_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="d2/d73/structutest_1_1DnsServerMock_1_1NoAnswer.html" target="_self">utest::DnsServerMock::NoAnswer</a></td><td class="desc"></td></tr>
<tr id="row_203_9_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_203_9_" class="arrow" onclick="toggleFolder('203_9_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/dae/classutils_1_1TracefulException.html" target="_self">utils::TracefulException</a></td><td class="desc">Exception that remembers the backtrace at the point of its construction </td></tr>
<tr id="row_203_9_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_9_0_" class="arrow" onclick="toggleFolder('203_9_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d92/classcrypto_1_1CryptoException.html" target="_self">crypto::CryptoException</a></td><td class="desc">Base exception </td></tr>
<tr id="row_203_9_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="da/d49/classcrypto_1_1KeyParseError.html" target="_self">crypto::KeyParseError</a></td><td class="desc">Signing key parse error </td></tr>
<tr id="row_203_9_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="d2/deb/classcrypto_1_1SignError.html" target="_self">crypto::SignError</a></td><td class="desc">Signature generation error </td></tr>
<tr id="row_203_9_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="d0/dc8/classcrypto_1_1VerificationError.html" target="_self">crypto::VerificationError</a></td><td class="desc">Signature verification error </td></tr>
<tr id="row_203_9_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_9_1_" class="arrow" onclick="toggleFolder('203_9_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d81/classengine_1_1io_1_1IoException.html" target="_self">engine::io::IoException</a></td><td class="desc">Generic I/O error </td></tr>
<tr id="row_203_9_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_9_1_0_" class="arrow" onclick="toggleFolder('203_9_1_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/de4/classengine_1_1io_1_1IoInterrupted.html" target="_self">engine::io::IoInterrupted</a></td><td class="desc">I/O interruption </td></tr>
<tr id="row_203_9_1_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/de3/classengine_1_1io_1_1IoCancelled.html" target="_self">engine::io::IoCancelled</a></td><td class="desc"></td></tr>
<tr id="row_203_9_1_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="de/d2d/classengine_1_1io_1_1IoTimeout.html" target="_self">engine::io::IoTimeout</a></td><td class="desc">I/O timeout </td></tr>
<tr id="row_203_9_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="d1/d90/classengine_1_1io_1_1IoSystemError.html" target="_self">engine::io::IoSystemError</a></td><td class="desc">Operating system I/O error </td></tr>
<tr id="row_203_9_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="dd/d4c/classengine_1_1io_1_1TerminatorNotFoundException.html" target="_self">engine::io::TerminatorNotFoundException</a></td><td class="desc"></td></tr>
<tr id="row_203_9_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="d1/d1d/classengine_1_1io_1_1TlsException.html" target="_self">engine::io::TlsException</a></td><td class="desc">TLS I/O error </td></tr>
<tr id="row_203_9_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">engine::subprocess::ChildProcessStatusException</a></td><td class="desc"></td></tr>
<tr id="row_203_9_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_9_3_" class="arrow" onclick="toggleFolder('203_9_3_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d9e/classformats_1_1bson_1_1BsonException.html" target="_self">formats::bson::BsonException</a></td><td class="desc">Generic BSON-related exception </td></tr>
<tr id="row_203_9_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="d9/de6/classformats_1_1bson_1_1ConversionException.html" target="_self">formats::bson::ConversionException</a></td><td class="desc">Conversion error </td></tr>
<tr id="row_203_9_3_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="d5/d07/classformats_1_1bson_1_1MemberMissingException.html" target="_self">formats::bson::MemberMissingException</a></td><td class="desc">BSON nonexisting member access error </td></tr>
<tr id="row_203_9_3_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/dd1/classformats_1_1bson_1_1OutOfBoundsException.html" target="_self">formats::bson::OutOfBoundsException</a></td><td class="desc">BSON array indexing error </td></tr>
<tr id="row_203_9_3_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="d8/d86/classformats_1_1bson_1_1ParseException.html" target="_self">formats::bson::ParseException</a></td><td class="desc">BSON parsing error </td></tr>
<tr id="row_203_9_3_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="d2/d94/classformats_1_1bson_1_1TypeMismatchException.html" target="_self">formats::bson::TypeMismatchException</a></td><td class="desc">BSON types mismatch error </td></tr>
<tr id="row_203_9_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="d1/d7c/classrcu_1_1MissingKeyException.html" target="_self">rcu::MissingKeyException</a></td><td class="desc">Thrown on missing element access </td></tr>
<tr id="row_203_9_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_203_9_5_" class="arrow" onclick="toggleFolder('203_9_5_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dc4/classstorages_1_1mongo_1_1MongoException.html" target="_self">storages::mongo::MongoException</a></td><td class="desc">Generic mongo-related exception </td></tr>
<tr id="row_203_9_5_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/dd6/classstorages_1_1mongo_1_1AuthenticationException.html" target="_self">storages::mongo::AuthenticationException</a></td><td class="desc">Authentication error </td></tr>
<tr id="row_203_9_5_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="d8/d48/classstorages_1_1mongo_1_1ClusterUnavailableException.html" target="_self">storages::mongo::ClusterUnavailableException</a></td><td class="desc">No server available to satisfy request constraints </td></tr>
<tr id="row_203_9_5_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="d7/df9/classstorages_1_1mongo_1_1IncompatibleServerException.html" target="_self">storages::mongo::IncompatibleServerException</a></td><td class="desc">Incompatible server version </td></tr>
<tr id="row_203_9_5_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/d1d/classstorages_1_1mongo_1_1InvalidConfigException.html" target="_self">storages::mongo::InvalidConfigException</a></td><td class="desc">Config validation error </td></tr>
<tr id="row_203_9_5_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="da/d68/classstorages_1_1mongo_1_1NetworkException.html" target="_self">storages::mongo::NetworkException</a></td><td class="desc">Network (connectivity) error </td></tr>
<tr id="row_203_9_5_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="d3/d28/classstorages_1_1mongo_1_1PoolNotFoundException.html" target="_self">storages::mongo::PoolNotFoundException</a></td><td class="desc">Nonexistent pool requested from the set </td></tr>
<tr id="row_203_9_5_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/d28/classstorages_1_1mongo_1_1PoolOverloadException.html" target="_self">storages::mongo::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_203_9_5_7_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_203_9_5_7_" class="arrow" onclick="toggleFolder('203_9_5_7_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/db7/classstorages_1_1mongo_1_1QueryException.html" target="_self">storages::mongo::QueryException</a></td><td class="desc">Generic query error </td></tr>
<tr id="row_203_9_5_7_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="d6/db8/classstorages_1_1mongo_1_1InvalidQueryArgumentException.html" target="_self">storages::mongo::InvalidQueryArgumentException</a></td><td class="desc">Query argument validation error </td></tr>
<tr id="row_203_9_5_7_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span id="arr_203_9_5_7_1_" class="arrow" onclick="toggleFolder('203_9_5_7_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/de8/classstorages_1_1mongo_1_1ServerException.html" target="_self">storages::mongo::ServerException</a></td><td class="desc">Server-side error </td></tr>
<tr id="row_203_9_5_7_1_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="d7/d4b/classstorages_1_1mongo_1_1DuplicateKeyException.html" target="_self">storages::mongo::DuplicateKeyException</a></td><td class="desc">Duplicate key error </td></tr>
<tr id="row_203_9_5_7_1_1_" 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="d9/d98/classstorages_1_1mongo_1_1WriteConcernException.html" target="_self">storages::mongo::WriteConcernException</a></td><td class="desc">Write concern error </td></tr>
<tr id="row_203_9_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="d5/de0/classutils_1_1InvariantError.html" target="_self">utils::InvariantError</a></td><td class="desc">Exception that is thrown on UINVARIANT violation </td></tr>
<tr id="row_204_" class="even"><td class="entry"><span style="width:16px;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">storages::clickhouse::ExecutionResult</a></td><td class="desc"></td></tr>
<tr id="row_205_" class="odd"><td class="entry"><span style="width:16px;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">cache::ExpirableLruCache< Key, Value, Hash, Equal ></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_206_" class="even"><td class="entry"><span style="width:16px;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">redis::ExpireReply</a></td><td class="desc"></td></tr>
<tr id="row_207_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::ExternalBody</a></td><td class="desc"></td></tr>
<tr id="row_208_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::ExtractionTag< T, Enable ></a></td><td class="desc"></td></tr>
<tr id="row_209_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::ExtractionTag< T, std::enable_if_t< kIsRowType< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_210_" class="even"><td class="entry"><span style="width:16px;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">server::handlers::ExtraHeaders</a></td><td class="desc"></td></tr>
<tr id="row_211_" class="odd"><td class="entry"><span style="width:16px;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">pytest_userver.plugins.service_runner.ServiceRunnerModule.FakeModule</a></td><td class="desc"></td></tr>
<tr id="row_212_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_212_" class="arrow" onclick="toggleFolder('212_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::false_type</b></td><td class="desc"></td></tr>
<tr id="row_212_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="d7/ddc/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer.html" target="_self">storages::postgres::io::traits::IsCompatibleContainer< Container ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="db/d97/structstorages_1_1postgres_1_1io_1_1traits_1_1CanClear.html" target="_self">storages::postgres::io::traits::CanClear< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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/dcd/structstorages_1_1postgres_1_1io_1_1traits_1_1CanReserve.html" target="_self">storages::postgres::io::traits::CanReserve< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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/df0/structstorages_1_1postgres_1_1io_1_1traits_1_1CanResize.html" target="_self">storages::postgres::io::traits::CanResize< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="d7/d7d/structstorages_1_1postgres_1_1io_1_1traits_1_1CanUseEnumAsStrongTypedef.html" target="_self">storages::postgres::io::traits::CanUseEnumAsStrongTypedef< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="df/d3c/structstorages_1_1postgres_1_1io_1_1traits_1_1HasInputOperator.html" target="_self">storages::postgres::io::traits::HasInputOperator< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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/d58/structstorages_1_1postgres_1_1io_1_1traits_1_1HasOutputOperator.html" target="_self">storages::postgres::io::traits::HasOutputOperator< T, typename ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="d3/dff/structstorages_1_1postgres_1_1io_1_1traits_1_1IsByteaCompatible.html" target="_self">storages::postgres::io::traits::IsByteaCompatible< T ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="d7/ddc/structstorages_1_1postgres_1_1io_1_1traits_1_1IsCompatibleContainer.html" target="_self">storages::postgres::io::traits::IsCompatibleContainer< T ></a></td><td class="desc">Mark C++ container type as supported by the driver </td></tr>
<tr id="row_212_9_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_212_9_" class="arrow" onclick="toggleFolder('212_9_')">►</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">storages::postgres::io::traits::IsNullable< T ></a></td><td class="desc">Metafunction to detect nullability of a type </td></tr>
<tr id="row_212_9_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/de7/structstorages_1_1postgres_1_1io_1_1traits_1_1IsNullable_3_1_1utils_1_1StrongTypedef_3_01Tag_00_02831ee52db5b184368590a0ed7b59b3.html" target="_self">storages::postgres::io::traits::IsNullable<::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="d9/d44/structstorages_1_1postgres_1_1io_1_1traits_1_1IsSpecialMapping.html" target="_self">storages::postgres::io::traits::IsSpecialMapping< T, typename ></a></td><td class="desc">Mark C++ mapping a special case for disambiguation </td></tr>
<tr id="row_212_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="d4/d54/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTuple.html" target="_self">storages::postgres::io::traits::IsTuple< T ></a></td><td class="desc"></td></tr>
<tr id="row_212_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="d8/d8c/structstorages_1_1postgres_1_1io_1_1traits_1_1IsTupleOfRefs.html" target="_self">storages::postgres::io::traits::IsTupleOfRefs< T ></a></td><td class="desc"></td></tr>
<tr id="row_212_13_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_212_13_" class="arrow" onclick="toggleFolder('212_13_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::traits::impl::HasNonConstIntrospection< T, typename ></b></td><td class="desc"></td></tr>
<tr id="row_212_13_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/d26/structstorages_1_1postgres_1_1io_1_1traits_1_1HasIntrospection.html" target="_self">storages::postgres::io::traits::HasIntrospection< T ></a></td><td class="desc"></td></tr>
<tr id="row_213_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< T, Size, Alignment, Strict ></a></td><td class="desc">Implements pimpl idiom without dynamic memory allocation </td></tr>
<tr id="row_214_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< ChildProcessImpl, kImplSize, kImplAlignment ></a></td><td class="desc"></td></tr>
<tr id="row_215_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< ClientImpl, 232, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_216_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< ConnectionPtr, 32, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_217_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 1032, 16 ></a></td><td class="desc"></td></tr>
<tr id="row_218_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 112, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_219_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 127, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_220_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 136, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_221_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 16, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_222_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 2560, 16 ></a></td><td class="desc"></td></tr>
<tr id="row_223_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 4176, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_224_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 560, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_225_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 600, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_226_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 632, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_227_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 704, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_228_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 792, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_229_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 888, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_230_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, 896, 8 ></a></td><td class="desc"></td></tr>
<tr id="row_231_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kImplSize, kImplAlign ></a></td><td class="desc"></td></tr>
<tr id="row_232_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kPimplSize, alignof(void *), utils::kStrictMatch ></a></td><td class="desc"></td></tr>
<tr id="row_233_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kSize, alignof(void *)></a></td><td class="desc"></td></tr>
<tr id="row_234_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kSize, kAlignment ></a></td><td class="desc"></td></tr>
<tr id="row_235_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kSize, kAlignment, false ></a></td><td class="desc"></td></tr>
<tr id="row_236_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, kSize, kAlignment, utils::kStrictMatch ></a></td><td class="desc"></td></tr>
<tr id="row_237_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Impl, sizeof(char *), sizeof(char *)></a></td><td class="desc"></td></tr>
<tr id="row_238_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< impl::Buffer, kBufferSize, kBufferAlignment, true ></a></td><td class="desc"></td></tr>
<tr id="row_239_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< impl::JsonStringImpl, kSize, kAlignment, utils::kStrictMatch ></a></td><td class="desc"></td></tr>
<tr id="row_240_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< Map, kPimplSize, alignof(void *)></a></td><td class="desc"></td></tr>
<tr id="row_241_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< moodycamel::ConcurrentQueue, kIdleQueueSize, kIdleQueueAlignment ></a></td><td class="desc"></td></tr>
<tr id="row_242_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< typename iter_traits::native_iter, kNativeIterSize, kNativeIterAlignment ></a></td><td class="desc"></td></tr>
<tr id="row_243_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< WaitList, kWaitListSize, alignof(void *)></a></td><td class="desc"></td></tr>
<tr id="row_244_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< WaitListLight, 16, 16 ></a></td><td class="desc"></td></tr>
<tr id="row_245_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d4b/classutils_1_1FastPimpl.html" target="_self">utils::FastPimpl< YAML::Node, kNativeNodeSize, kNativeAlignment ></a></td><td class="desc"></td></tr>
<tr id="row_246_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d34/classutils_1_1FastScopeGuard.html" target="_self">utils::FastScopeGuard< Callback ></a></td><td class="desc">Helper class to perform actions on scope exit </td></tr>
<tr id="row_247_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_247_" class="arrow" onclick="toggleFolder('247_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d31/classstorages_1_1postgres_1_1Field.html" target="_self">storages::postgres::Field</a></td><td class="desc">Accessor to a single field in a result set's row </td></tr>
<tr id="row_247_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_247_0_" class="arrow" onclick="toggleFolder('247_0_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::detail::ConstDataIterator< ConstFieldIterator, Field, detail::IteratorDirection::kForward ></b></td><td class="desc"></td></tr>
<tr id="row_247_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="d6/daa/classstorages_1_1postgres_1_1ConstFieldIterator.html" target="_self">storages::postgres::ConstFieldIterator</a></td><td class="desc">Iterator over fields in a result set's row </td></tr>
<tr id="row_247_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_247_1_" class="arrow" onclick="toggleFolder('247_1_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::detail::ConstDataIterator< ReverseConstFieldIterator, Field, detail::IteratorDirection::kReverse ></b></td><td class="desc"></td></tr>
<tr id="row_247_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="d1/d69/classstorages_1_1postgres_1_1ReverseConstFieldIterator.html" target="_self">storages::postgres::ReverseConstFieldIterator</a></td><td class="desc">Reverse iterator over fields in a result set's row </td></tr>
<tr id="row_248_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::FieldBuffer</a></td><td class="desc"></td></tr>
<tr id="row_249_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/de7/structstorages_1_1postgres_1_1FieldDescription.html" target="_self">storages::postgres::FieldDescription</a></td><td class="desc"></td></tr>
<tr id="row_250_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d63/structstorages_1_1postgres_1_1FieldTag.html" target="_self">storages::postgres::FieldTag</a></td><td class="desc">Tag type to disambiguate reading the first value of a row to a user's composite type (PostgreSQL composite type in the row initializes user's type) </td></tr>
<tr id="row_251_" class="odd"><td class="entry"><span style="width:16px;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">fs::blocking::FileDescriptor</a></td><td class="desc">A file descriptor wrapper </td></tr>
<tr id="row_252_" class="even"><td class="entry"><span style="width:16px;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">fs::FileInfoWithData</a></td><td class="desc">Struct file with load data </td></tr>
<tr id="row_253_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::operations::Find</a></td><td class="desc">Retrieves documents matching the filter </td></tr>
<tr id="row_254_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::operations::FindAndModify</a></td><td class="desc">Atomically updates a document and returns either previous or new version </td></tr>
<tr id="row_255_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::operations::FindAndRemove</a></td><td class="desc">Atomically removes a document and returns it </td></tr>
<tr id="row_256_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d84/classutils_1_1FixedArray.html" target="_self">utils::FixedArray< T ></a></td><td class="desc">A fixed-size array with the size determined at runtime </td></tr>
<tr id="row_257_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d84/classutils_1_1FixedArray.html" target="_self">utils::FixedArray< MutexDatum ></a></td><td class="desc"></td></tr>
<tr id="row_258_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d8b/classutils_1_1Flags.html" target="_self">utils::Flags< Enum ></a></td><td class="desc">Wrapper to extend enum with flags interface </td></tr>
<tr id="row_259_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d8b/classutils_1_1Flags.html" target="_self">utils::Flags< Flags ></a></td><td class="desc"></td></tr>
<tr id="row_260_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d8b/classutils_1_1Flags.html" target="_self">utils::Flags< RangeBound ></a></td><td class="desc"></td></tr>
<tr id="row_261_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_261_" class="arrow" onclick="toggleFolder('261_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::FloatingPointBinaryFormatter< double ></b></td><td class="desc"></td></tr>
<tr id="row_261_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/da1/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01double_01_4.html" target="_self">storages::postgres::io::BufferFormatter< double ></a></td><td class="desc"></td></tr>
<tr id="row_262_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_262_" class="arrow" onclick="toggleFolder('262_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::FloatingPointBinaryFormatter< float ></b></td><td class="desc"></td></tr>
<tr id="row_262_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="d4/d57/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01float_01_4.html" target="_self">storages::postgres::io::BufferFormatter< float ></a></td><td class="desc"></td></tr>
<tr id="row_263_" class="odd"><td class="entry"><span style="width:16px;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">decimal64::FloorRoundPolicy</a></td><td class="desc">Round towards -infinity </td></tr>
<tr id="row_264_" class="even"><td class="entry"><span style="width:16px;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">clients::http::Form</a></td><td class="desc"></td></tr>
<tr id="row_265_" class="odd"><td class="entry"><span style="width:16px;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">decimal64::FormatOptions</a></td><td class="desc">Parameters for flexible decimal formatting </td></tr>
<tr id="row_266_" class="even"><td class="entry"><span style="width:16px;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">server::handlers::FormattedErrorData</a></td><td class="desc"></td></tr>
<tr id="row_267_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_267_" class="arrow" onclick="toggleFolder('267_')">►</span><span class="icona"><span class="icon">C</span></span><b>fmt::formatter</b></td><td class="desc"></td></tr>
<tr id="row_267_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/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">fmt::formatter< T, Char, std::enable_if_t<::utils::IsStrongTypedef< T >{}> ></a></td><td class="desc"></td></tr>
<tr id="row_267_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/d07/structfmt_1_1formatter_3_1_1formats_1_1json_1_1Value_01_4.html" target="_self">fmt::formatter<::formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_268_" class="even"><td class="entry"><span style="width:16px;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">fmt::formatter< boost::uuids::uuid ></a></td><td class="desc"></td></tr>
<tr id="row_269_" class="odd"><td class="entry"><span style="width:16px;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">fmt::formatter<::decimal64::Decimal< Prec, RoundPolicy >, Char ></a></td><td class="desc">Fmt support </td></tr>
<tr id="row_270_" class="even"><td class="entry"><span style="width:16px;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">fmt::formatter<::engine::io::Sockaddr ></a></td><td class="desc">Socket address fmt formatter </td></tr>
<tr id="row_271_" class="odd"><td class="entry"><span style="width:16px;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">fmt::formatter<::server::http::HttpMethod ></a></td><td class="desc"></td></tr>
<tr id="row_272_" class="even"><td class="entry"><span style="width:16px;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">fmt::formatter<::server::http::HttpStatus ></a></td><td class="desc"></td></tr>
<tr id="row_273_" class="odd"><td class="entry"><span style="width:16px;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">fmt::formatter<::utils::datetime::TimeOfDay< Duration > ></a></td><td class="desc"></td></tr>
<tr id="row_274_" class="even"><td class="entry"><span style="width:16px;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">server::http::FormDataArg</a></td><td class="desc">Argument of a multipart/form-data request </td></tr>
<tr id="row_275_" class="odd"><td class="entry"><span style="width:16px;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">fs::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_276_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/dd3/classconcurrent_1_1FunctionId.html" target="_self">concurrent::FunctionId</a></td><td class="desc"></td></tr>
<tr id="row_277_" class="odd"><td class="entry"><span style="width:16px;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">engine::Future< T ></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_278_" class="even"><td class="entry"><span style="width:16px;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">engine::Future< ReplyPtr ></a></td><td class="desc"></td></tr>
<tr id="row_279_" class="odd"><td class="entry"><span style="width:16px;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">engine::Future< std::shared_ptr< clients::http::Response > ></a></td><td class="desc"></td></tr>
<tr id="row_280_" class="even"><td class="entry"><span style="width:16px;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">rapidjson::GenericDocument< Encoding, Allocator, StackAllocator ></a></td><td class="desc"></td></tr>
<tr id="row_281_" class="odd"><td class="entry"><span style="width:16px;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">rapidjson::GenericValue< Encoding, Allocator ></a></td><td class="desc"></td></tr>
<tr id="row_282_" class="even"><td class="entry"><span style="width:16px;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">redis::GeoaddArg</a></td><td class="desc"></td></tr>
<tr id="row_283_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/df3/structstorages_1_1redis_1_1GeoPoint.html" target="_self">storages::redis::GeoPoint</a></td><td class="desc"></td></tr>
<tr id="row_284_" class="even"><td class="entry"><span style="width:16px;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">redis::GeoradiusOptions</a></td><td class="desc"></td></tr>
<tr id="row_285_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull< T ></a></td><td class="desc"></td></tr>
<tr id="row_286_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull< ::utils::StrongTypedef< Tag, T, Ops, Enable > ></a></td><td class="desc"></td></tr>
<tr id="row_287_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull< boost::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_288_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull< Null< T > ></a></td><td class="desc"></td></tr>
<tr id="row_289_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull< std::optional< T > ></a></td><td class="desc"></td></tr>
<tr id="row_290_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::GetSetNull<::utils::OptionalRef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_291_" class="odd"><td class="entry"><span style="width:16px;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">server::request::ResponseBase::Guard</a></td><td class="desc"></td></tr>
<tr id="row_292_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_292_" class="arrow" onclick="toggleFolder('292_')">►</span><span class="icona"><span class="icon">C</span></span><b>decimal64::impl::HalfRoundPolicyBase< impl::HalfDownPolicy ></b></td><td class="desc"></td></tr>
<tr id="row_292_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/d25/classdecimal64_1_1HalfDownRoundPolicy.html" target="_self">decimal64::HalfDownRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 towards zero </td></tr>
<tr id="row_293_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_293_" class="arrow" onclick="toggleFolder('293_')">►</span><span class="icona"><span class="icon">C</span></span><b>decimal64::impl::HalfRoundPolicyBase< impl::HalfEvenPolicy ></b></td><td class="desc"></td></tr>
<tr id="row_293_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/d00/classdecimal64_1_1HalfEvenRoundPolicy.html" target="_self">decimal64::HalfEvenRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 towards number with even last digit </td></tr>
<tr id="row_294_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_294_" class="arrow" onclick="toggleFolder('294_')">►</span><span class="icona"><span class="icon">C</span></span><b>decimal64::impl::HalfRoundPolicyBase< impl::HalfUpPolicy ></b></td><td class="desc"></td></tr>
<tr id="row_294_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="d7/de2/classdecimal64_1_1HalfUpRoundPolicy.html" target="_self">decimal64::HalfUpRoundPolicy</a></td><td class="desc">Round to nearest, 0.5 away from zero </td></tr>
<tr id="row_295_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::HandlerConfig</a></td><td class="desc"></td></tr>
<tr id="row_296_" class="even"><td class="entry"><span style="width:16px;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">server::handlers::HandlerErrorCodeHash</a></td><td class="desc"></td></tr>
<tr id="row_297_" class="odd"><td class="entry"><span style="width:16px;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">concurrent::FunctionId::Hash</a></td><td class="desc"></td></tr>
<tr id="row_298_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_298_" class="arrow" onclick="toggleFolder('298_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::hash</b></td><td class="desc"></td></tr>
<tr id="row_298_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="d5/d09/classconcurrent_1_1MutexSet.html" target="_self">concurrent::MutexSet< Key, std::hash< Key >, std::equal_to< Key > ></a></td><td class="desc"></td></tr>
<tr id="row_298_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/d09/classconcurrent_1_1MutexSet.html" target="_self">concurrent::MutexSet< Key, Hash, Equal ></a></td><td class="desc">A dynamic set of mutexes </td></tr>
<tr id="row_298_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="de/d38/structstd_1_1hash_3_1_1utils_1_1StrongTypedef_3_01Tag_00_01T_00_01Ops_01_4_01_4.html" target="_self">std::hash<::utils::StrongTypedef< Tag, T, Ops > ></a></td><td class="desc"></td></tr>
<tr id="row_299_" class="odd"><td class="entry"><span style="width:16px;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">std::hash<::decimal64::Decimal< Prec, RoundPolicy > ></a></td><td class="desc">Std::hash support </td></tr>
<tr id="row_300_" class="even"><td class="entry"><span style="width:16px;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">std::hash<::formats::bson::Binary ></a></td><td class="desc"></td></tr>
<tr id="row_301_" class="odd"><td class="entry"><span style="width:16px;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">std::hash<::formats::bson::Oid ></a></td><td class="desc"></td></tr>
<tr id="row_302_" class="even"><td class="entry"><span style="width:16px;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">std::hash<::formats::bson::Timestamp ></a></td><td class="desc"></td></tr>
<tr id="row_303_" class="odd"><td class="entry"><span style="width:16px;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">std::hash<::server::auth::UserScope ></a></td><td class="desc"></td></tr>
<tr id="row_304_" class="even"><td class="entry"><span style="width:16px;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">std::hash<::storages::postgres::DBTypeName ></a></td><td class="desc"></td></tr>
<tr id="row_305_" class="odd"><td class="entry"><span style="width:16px;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">std::hash<::storages::postgres::io::PredefinedOids ></a></td><td class="desc"></td></tr>
<tr id="row_306_" class="even"><td class="entry"><span style="width:16px;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">std::hash<::storages::postgres::SqlState ></a></td><td class="desc">Specialization of std::hash template for SqlState </td></tr>
<tr id="row_307_" class="odd"><td class="entry"><span style="width:16px;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">std::hash<::utils::CachedHash< T > ></a></td><td class="desc"></td></tr>
<tr id="row_308_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_308_" class="arrow" onclick="toggleFolder('308_')">►</span><span class="icona"><span class="icon">C</span></span><b>logging::impl::HexBase</b></td><td class="desc"></td></tr>
<tr id="row_308_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/de6/structlogging_1_1Hex.html" target="_self">logging::Hex</a></td><td class="desc">Formats value in a hex mode with the fixed length representation </td></tr>
<tr id="row_308_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="df/d58/structlogging_1_1HexShort.html" target="_self">logging::HexShort</a></td><td class="desc"></td></tr>
<tr id="row_309_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::options::Hint</a></td><td class="desc">Specifies an index to use for the query </td></tr>
<tr id="row_310_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/dc5/structutils_1_1AnyMovable_1_1HolderBase.html" target="_self">utils::AnyMovable::HolderBase</a></td><td class="desc"></td></tr>
<tr id="row_311_" class="odd"><td class="entry"><span style="width:16px;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">error_injection::Hook</a></td><td class="desc"></td></tr>
<tr id="row_312_" class="even"><td class="entry"><span style="width:16px;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">secdist::RedisSettings::HostPort</a></td><td class="desc"></td></tr>
<tr id="row_313_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d3/d7a/classtestsuite_1_1HttpAllowedUrlsExtra.html" target="_self">testsuite::HttpAllowedUrlsExtra</a></td><td class="desc"></td></tr>
<tr id="row_314_" class="even"><td class="entry"><span style="width:16px;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">server::http::HttpRequest</a></td><td class="desc">HTTP Request data </td></tr>
<tr id="row_315_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/dab/structutest_1_1HttpServerMock_1_1HttpRequest.html" target="_self">utest::HttpServerMock::HttpRequest</a></td><td class="desc"></td></tr>
<tr id="row_316_" class="even"><td class="entry"><span style="width:16px;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">server::request::HttpRequestConfig</a></td><td class="desc"></td></tr>
<tr id="row_317_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d6f/structutest_1_1HttpServerMock_1_1HttpResponse.html" target="_self">utest::HttpServerMock::HttpResponse</a></td><td class="desc"></td></tr>
<tr id="row_318_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d2b/classutest_1_1HttpServerMock.html" target="_self">utest::HttpServerMock</a></td><td class="desc"></td></tr>
<tr id="row_319_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_319_" class="arrow" onclick="toggleFolder('319_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="db/d85/classurabbitmq_1_1IAdminInterface.html" target="_self">urabbitmq::IAdminInterface</a></td><td class="desc">Administrative interface for the broker. This class is merely an interface for convenience and you are not expected to use it directly (use <code><a class="el" href="da/d66/classurabbitmq_1_1Client.html" title="Interface for communicating with a RabbitMQ cluster.">Client</a></code>/<code><a class="el" href="d4/de8/classurabbitmq_1_1AdminChannel.html" title="Administrative interface for the broker. You may use this class to setup your exchanges/queues/bindin...">AdminChannel</a></code> instead) </td></tr>
<tr id="row_319_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="d4/de8/classurabbitmq_1_1AdminChannel.html" target="_self">urabbitmq::AdminChannel</a></td><td class="desc">Administrative interface for the broker. You may use this class to setup your exchanges/queues/bindings. You may as well use <code><a class="el" href="da/d66/classurabbitmq_1_1Client.html" title="Interface for communicating with a RabbitMQ cluster.">Client</a></code> itself instead </td></tr>
<tr id="row_319_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/d66/classurabbitmq_1_1Client.html" target="_self">urabbitmq::Client</a></td><td class="desc">Interface for communicating with a RabbitMQ cluster </td></tr>
<tr id="row_320_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_320_" class="arrow" onclick="toggleFolder('320_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/d69/classurabbitmq_1_1IChannelInterface.html" target="_self">urabbitmq::IChannelInterface</a></td><td class="desc">Publisher interface for the broker. This class is merely an interface for convenience and you are not expected to use it directly (use <code><a class="el" href="da/d66/classurabbitmq_1_1Client.html" title="Interface for communicating with a RabbitMQ cluster.">Client</a></code>/<code><a class="el" href="da/d8b/classurabbitmq_1_1Channel.html" title="Publisher interface for the broker. You may use this class to publish your messages.">Channel</a></code> instead) </td></tr>
<tr id="row_320_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/d8b/classurabbitmq_1_1Channel.html" target="_self">urabbitmq::Channel</a></td><td class="desc">Publisher interface for the broker. You may use this class to publish your messages </td></tr>
<tr id="row_320_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="da/d66/classurabbitmq_1_1Client.html" target="_self">urabbitmq::Client</a></td><td class="desc">Interface for communicating with a RabbitMQ cluster </td></tr>
<tr id="row_321_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d5/d8c/classtracing_1_1InPlaceSpan.html" target="_self">tracing::InPlaceSpan</a></td><td class="desc">Avoids an extra allocation by storing <a class="el" href="d7/d1a/classtracing_1_1Span.html" title="Measures the execution time of the current code block, links it with the parent tracing::Spans and st...">tracing::Span</a> data in-place </td></tr>
<tr id="row_322_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< T, Enable ></a></td><td class="desc">Customisation point for parsers </td></tr>
<tr id="row_323_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< BoundedRange< T >, std::enable_if_t< kHasParser< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_324_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< formats::json::Value ></a></td><td class="desc"></td></tr>
<tr id="row_325_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< Range< T >, std::enable_if_t< kHasParser< T > > ></a></td><td class="desc"></td></tr>
<tr id="row_326_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< std::chrono::duration< Rep, Period > ></a></td><td class="desc">Binary parser for std::chrono::duration </td></tr>
<tr id="row_327_" class="odd"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::Input< T, EnableIfCanUseEnumAsStrongTypedef< T > ></a></td><td class="desc"></td></tr>
<tr id="row_328_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d96/classugrpc_1_1client_1_1InputStream.html" target="_self">ugrpc::client::InputStream< Response ></a></td><td class="desc">Controls a single request -> response stream RPC </td></tr>
<tr id="row_329_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/db6/classugrpc_1_1server_1_1InputStream.html" target="_self">ugrpc::server::InputStream< Request, Response ></a></td><td class="desc">Controls a request stream -> single response RPC </td></tr>
<tr id="row_330_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::operations::InsertMany</a></td><td class="desc">Inserts multiple documents </td></tr>
<tr id="row_331_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::bulk_ops::InsertOne</a></td><td class="desc">Inserts a single document as part of bulk operation </td></tr>
<tr id="row_332_" class="even"><td class="entry"><span style="width:16px;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">storages::mongo::operations::InsertOne</a></td><td class="desc">Inserts a single document </td></tr>
<tr id="row_333_" class="odd"><td class="entry"><span style="width:16px;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">rcu::RcuMap< Key, Value >::InsertReturnTypeImpl< ValuePtrType ></a></td><td class="desc"></td></tr>
<tr id="row_334_" class="even"><td class="entry"><span style="width:16px;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">redis::InstanceStatistics</a></td><td class="desc"></td></tr>
<tr id="row_335_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_335_" class="arrow" onclick="toggleFolder('335_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d1c/structstorages_1_1postgres_1_1InstanceStatisticsTemplate.html" target="_self">storages::postgres::InstanceStatisticsTemplate< Counter, PercentileAccumulator, MmaAccumulator ></a></td><td class="desc">Template instance statistics storage </td></tr>
<tr id="row_335_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/d2a/structstorages_1_1postgres_1_1InstanceStatisticsNonatomic.html" target="_self">storages::postgres::InstanceStatisticsNonatomic</a></td><td class="desc"></td></tr>
<tr id="row_336_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/df3/structstorages_1_1postgres_1_1InstanceStatsDescriptor.html" target="_self">storages::postgres::InstanceStatsDescriptor</a></td><td class="desc">Instance statistics with description </td></tr>
<tr id="row_337_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/db4/structstorages_1_1postgres_1_1InstanceTopologyStatistics.html" target="_self">storages::postgres::InstanceTopologyStatistics< MmaAccumulator ></a></td><td class="desc">Template instance topology statistics storage </td></tr>
<tr id="row_338_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_338_" class="arrow" onclick="toggleFolder('338_')">►</span><span class="icona"><span class="icon">C</span></span><b>std::integral_constant</b></td><td class="desc"></td></tr>
<tr id="row_338_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/d3b/structstorages_1_1postgres_1_1io_1_1traits_1_1DimensionSize.html" target="_self">storages::postgres::io::traits::DimensionSize< T ></a></td><td class="desc"></td></tr>
<tr id="row_338_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/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">storages::postgres::io::traits::DimensionSize< std::array< T, N > ></a></td><td class="desc"></td></tr>
<tr id="row_338_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="da/d80/structutils_1_1encoding_1_1TypeNeedsEncodeTskv.html" target="_self">utils::encoding::TypeNeedsEncodeTskv< T ></a></td><td class="desc"></td></tr>
<tr id="row_339_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_339_" class="arrow" onclick="toggleFolder('339_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryFormatter< Bigint ></b></td><td class="desc"></td></tr>
<tr id="row_339_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="d4/dcd/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Bigint_01_4.html" target="_self">storages::postgres::io::BufferFormatter< Bigint ></a></td><td class="desc"></td></tr>
<tr id="row_340_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_340_" class="arrow" onclick="toggleFolder('340_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryFormatter< Integer ></b></td><td class="desc"></td></tr>
<tr id="row_340_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="dd/d2d/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Integer_01_4.html" target="_self">storages::postgres::io::BufferFormatter< Integer ></a></td><td class="desc"></td></tr>
<tr id="row_341_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_341_" class="arrow" onclick="toggleFolder('341_')">►</span><span class="icona"><span class="icon">C</span></span><b>storages::postgres::io::detail::IntegralBinaryFormatter< Smallint ></b></td><td class="desc"></td></tr>
<tr id="row_341_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/d4d/structstorages_1_1postgres_1_1io_1_1BufferFormatter_3_01Smallint_01_4.html" target="_self">storages::postgres::io::BufferFormatter< Smallint ></a></td><td class="desc"></td></tr>
<tr id="row_342_" class="even"><td class="entry"><span style="width:16px;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">formats::json::parser::IntegralParser< T ></a></td><td class="desc"></td></tr>
<tr id="row_343_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::InternalMessage</a></td><td class="desc"></td></tr>
<tr id="row_344_" class="even"><td class="entry"><span style="width:16px;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">storages::postgres::io::traits::IO< T ></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_345_" class="odd"><td class="entry"><span style="width:16px;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">engine::io::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_346_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_346_" class="arrow" onclick="toggleFolder('346_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="da/d25/classurabbitmq_1_1IReliableChannelInterface.html" target="_self">urabbitmq::IReliableChannelInterface</a></td><td class="desc">Reliable publisher interface for the broker. This class is merely an interface for convenience and you are not expected to use it directly (use <code><a class="el" href="da/d66/classurabbitmq_1_1Client.html" title="Interface for communicating with a RabbitMQ cluster.">Client</a></code>/<code><a class="el" href="db/deb/classurabbitmq_1_1ReliableChannel.html" title="Reliable publisher interface for the broker. You may use this class to reliably publish your messages...">ReliableChannel</a></code> instead) </td></tr>
<tr id="row_346_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/d66/classurabbitmq_1_1Client.html" target="_self">urabbitmq::Client</a></td><td class="desc">Interface for communicating with a RabbitMQ cluster </td></tr>
<tr id="row_346_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="db/deb/classurabbitmq_1_1ReliableChannel.html" target="_self">urabbitmq::ReliableChannel</a></td><td class="desc">Reliable publisher interface for the broker. You may use this class to reliably publish your messages (publisher-confirms) </td></tr>
<tr id="row_347_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_347_" class="arrow" onclick="toggleFolder('347_')">►</span><span class="icona"><span class="icon">C</span></span><b>utils::IsDeclComplete</b></td><td class="desc"></td></tr>
<tr id="row_347_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="d9/d14/structstorages_1_1postgres_1_1io_1_1traits_1_1HasFormatter.html" target="_self">storages::postgres::io::traits::HasFormatter< T ></a></td><td class="desc">Metafunction to detect if a type has a formatter </td></tr>
<tr id="row_347_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="dd/d06/structstorages_1_1postgres_1_1io_1_1traits_1_1HasParser.html" target="_self">storages::postgres::io::traits::HasParser< T ></a></td><td class="desc">Metafunction to detect if a type has a parser </td></tr>
<tr id="row_347_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="d1/d40/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToSystemType.html" target="_self">storages::postgres::io::traits::IsMappedToSystemType< T ></a></td><td class="desc">Detect if the C++ type is mapped to a Postgres system type </td></tr>
<tr id="row_347_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="d7/dad/structstorages_1_1postgres_1_1io_1_1traits_1_1IsMappedToUserType.html" target="_self">storages::postgres::io::traits::IsMappedToUserType< T ></a></td><td class="desc">Detect if the C++ type is mapped to a Postgres user type </td></tr>
<tr id="row_348_" class="even"><td class="entry"><span style="width:16px;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">dump::IsDumpedAggregate< T ></a></td><td class="desc"></td></tr>
<tr id="row_349_" class="odd"><td class="entry"><span style="width:16px;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">concurrent::ItemMutex< Key, Equal ></a></td><td class="desc"></td></tr>
<tr id="row_350_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d0/d37/classformats_1_1common_1_1ItemsWrapper.html" target="_self">formats::common::ItemsWrapper< Value ></a></td><td class="desc"></td></tr>
<tr id="row_351_" class="odd"><td class="entry"><span style="width:16px;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">formats::bson::Iterator< ValueType, Direction ></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_352_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </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">formats::common::ItemsWrapper< Value >::Iterator</a></td><td class="desc"></td></tr>
<tr id="row_353_" class="odd"><td class="entry"><span style="width:16px;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">formats::json::Iterator< Traits, Direction ></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_354_" class="even"><td class="entry"><span style="width:16px;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">formats::yaml::Iterator< iter_traits ></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_355_" class="odd"><td class="entry"><span style="width:16px;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">storages::clickhouse::io::RowsMapper< Row >::Iterator</a></td><td class="desc"></td></tr>
<tr id="row_356_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </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">storages::mongo::Cursor::Iterator</a></td><td class="desc"></td></tr>
<tr id="row_357_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d2/d8e/classstorages_1_1redis_1_1ScanRequest_1_1Iterator.html" target="_self">storages::redis::ScanRequest< scan_tag >::Iterator</a></td><td class="desc"></td></tr>
<tr id="row_358_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d17/classyaml__config_1_1Iterator.html" target="_self">yaml_config::Iterator< iter_traits ></a></td><td class="desc"></td></tr>
<tr id="row_359_" class="odd"><td class="entry"><span style="width:16px;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">formats::json::Value::IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_360_" class="even"><td class="entry"><span style="width:16px;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">formats::json::ValueBuilder::IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_361_" class="odd"><td class="entry"><span style="width:16px;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">formats::yaml::Value::IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_362_" class="even"><td class="entry"><span style="width:16px;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">formats::yaml::ValueBuilder::IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_363_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d5a/structyaml__config_1_1YamlConfig_1_1IterTraits.html" target="_self">yaml_config::YamlConfig::IterTraits</a></td><td class="desc"></td></tr>
<tr id="row_364_" class="even"><td class="entry"><span style="width:16px;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">formats::common::ItemsWrapper< Value >::Iterator::ItValue</a></td><td class="desc"></td></tr>
<tr id="row_365_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::JsonErrorBuilder</a></td><td class="desc"></td></tr>
<tr id="row_366_" class="even"><td class="entry"><span style="width:16px;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">dynamic_config::Client::JsonReply</a></td><td class="desc"></td></tr>
<tr id="row_367_" class="odd"><td class="entry"><span style="width:16px;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">formats::bson::JsonString</a></td><td class="desc"></td></tr>
<tr id="row_368_" class="even"><td class="entry"><span style="width:16px;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">dynamic_config::Key< Parser ></a></td><td class="desc">A config key is a unique identifier for a config variable </td></tr>
<tr id="row_369_" class="odd"><td class="entry"><span style="width:16px;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">redis::KeyShard</a></td><td class="desc"></td></tr>
<tr id="row_370_" class="even"><td class="entry"><span style="width:16px;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">redis::KeyShardFactory</a></td><td class="desc"></td></tr>
<tr id="row_371_" class="odd"><td class="entry"><span style="width:16px;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">dynamic_config::KeyValue</a></td><td class="desc">A type-erased config key-value pair </td></tr>
<tr id="row_372_" class="even"><td class="entry"><span style="width:16px;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">redis::ReplyData::KeyValues::KeyValue</a></td><td class="desc"></td></tr>
<tr id="row_373_" class="odd"><td class="entry"><span style="width:16px;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">redis::ReplyData::KeyValues::KeyValueIt</a></td><td class="desc"></td></tr>
<tr id="row_374_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dc8/classredis_1_1ReplyData_1_1KeyValues.html" target="_self">redis::ReplyData::KeyValues</a></td><td class="desc"></td></tr>
<tr id="row_375_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/dd6/classutils_1_1LazyPrvalue.html" target="_self">utils::LazyPrvalue< Func ></a></td><td class="desc">Can be used with various emplace functions to allow in-place constructing a non-movable value using a callable </td></tr>
<tr id="row_376_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d9/ddf/classutils_1_1LazySharedPtr.html" target="_self">utils::LazySharedPtr< T ></a></td><td class="desc">A lazy wrapper around <a class="el" href="d2/d70/classutils_1_1SharedReadablePtr.html" title="std::shared_ptr<const T> wrapper that makes sure that the pointer is stored before dereferencing....">utils::SharedReadablePtr</a> that fetches the data on first access </td></tr>
<tr id="row_377_" class="odd"><td class="entry"><span style="width:16px;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">server::handlers::LegacyJsonErrorBuilder</a></td><td class="desc"></td></tr>
<tr id="row_378_" class="even"><td class="entry"><span style="width:16px;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">congestion_control::Limit</a></td><td class="desc"></td></tr>
<tr id="row_379_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::options::Limit</a></td><td class="desc">Specifies the number of documents to request from the server </td></tr>
<tr id="row_380_" class="even"><td class="entry"><span style="width:16px;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">congestion_control::Limiter</a></td><td class="desc"></td></tr>
<tr id="row_381_" class="odd"><td class="entry"><span style="width:16px;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">clients::http::LocalStats</a></td><td class="desc">Represents all the local timings and statistics </td></tr>
<tr id="row_382_" class="even"><td class="entry"><span style="width:16px;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">concurrent::LockedPtr< Lock, Data ></a></td><td class="desc">Proxy class for locked access to data protected with locking::SharedLock<T> </td></tr>
<tr id="row_383_" class="odd"><td class="entry"><span style="width:16px;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">logging::LogExtra</a></td><td class="desc">Extra tskv fields storage </td></tr>
<tr id="row_384_" class="even"><td class="entry"><span style="width:16px;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">logging::LogHelper</a></td><td class="desc"></td></tr>
<tr id="row_385_" class="odd"><td class="entry"><span style="width:16px;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">clients::dns::Resolver::LookupSourceCounters</a></td><td class="desc"></td></tr>
<tr id="row_386_" class="even"><td class="entry"><span style="width:16px;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">cache::LruCacheConfig</a></td><td class="desc"></td></tr>
<tr id="row_387_" class="odd"><td class="entry"><span style="width:16px;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">cache::LruCacheConfigStatic</a></td><td class="desc"></td></tr>
<tr id="row_388_" class="even"><td class="entry"><span style="width:16px;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">cache::LruCacheWrapper< Key, Value, Hash, Equal ></a></td><td class="desc"></td></tr>
<tr id="row_389_" class="odd"><td class="entry"><span style="width:16px;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">cache::LruMap< T, U, Hash, Equal ></a></td><td class="desc"></td></tr>
<tr id="row_390_" class="even"><td class="entry"><span style="width:16px;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">cache::LruMap< T, U, Hash, Equal ></a></td><td class="desc"></td></tr>
<tr id="row_391_" class="odd"><td class="entry"><span style="width:16px;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">cache::LruSet< T, Hash, Equal ></a></td><td class="desc"></td></tr>
<tr id="row_392_" class="even"><td class="entry"><span style="width:16px;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">components::Manager</a></td><td class="desc"></td></tr>
<tr id="row_393_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="df/d6e/classstorages_1_1redis_1_1ScanOptionsBase_1_1Match.html" target="_self">storages::redis::ScanOptionsBase::Match</a></td><td class="desc"></td></tr>
<tr id="row_394_" class="even"><td class="entry"><span style="width:16px;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">formats::bson::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_395_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::options::MaxServerTime</a></td><td class="desc">Specifies the server-side time limit for the operation </td></tr>
<tr id="row_396_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d4/d72/structstorages_1_1redis_1_1MemberScore.html" target="_self">storages::redis::MemberScore</a></td><td class="desc"></td></tr>
<tr id="row_397_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d9a/classstorages_1_1postgres_1_1Message.html" target="_self">storages::postgres::Message</a></td><td class="desc"></td></tr>
<tr id="row_398_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d6/d91/classutils_1_1statistics_1_1MetricsStorage.html" target="_self">utils::statistics::MetricsStorage</a></td><td class="desc"><a class="el" href="d5/d18/classutils_1_1statistics_1_1Storage.html">Storage</a> of metrics registered with MetricTag<Metric> </td></tr>
<tr id="row_399_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d7/d33/classutils_1_1statistics_1_1MetricTag.html" target="_self">utils::statistics::MetricTag< Metric ></a></td><td class="desc">Metric description </td></tr>
<tr id="row_400_" class="even"><td class="entry"><span style="width:16px;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">formats::bson::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_401_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/d01/classutils_1_1statistics_1_1MinMaxAvg.html" target="_self">utils::statistics::MinMaxAvg< ValueType, AverageType ></a></td><td class="desc">Class for concurrent safe calculation of minimum, maximum and average over series of values </td></tr>
<tr id="row_402_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_402_" class="arrow" onclick="toggleFolder('402_')">►</span><span class="icona"><span class="icon">C</span></span><b>pytest.Module</b></td><td class="desc"></td></tr>
<tr id="row_402_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/d8d/classpytest__userver_1_1plugins_1_1service__runner_1_1ServiceRunnerModule.html" target="_self">pytest_userver.plugins.service_runner.ServiceRunnerModule</a></td><td class="desc"></td></tr>
<tr id="row_403_" class="odd"><td class="entry"><span style="width:16px;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">storages::mongo::MongoError</a></td><td class="desc">MongoDB error </td></tr>
<tr id="row_404_" class="even"><td class="entry"><span style="width:16px;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">redis::ReplyData::MovableKeyValues::MovableKeyValue</a></td><td class="desc"></td></tr>
<tr id="row_405_" class="odd"><td class="entry"><span style="width:16px;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">redis::ReplyData::MovableKeyValues::MovableKeyValueIt</a></td><td class="desc"></td></tr>
<tr id="row_406_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="d1/dfe/classredis_1_1ReplyData_1_1MovableKeyValues.html" target="_self">redis::ReplyData::MovableKeyValues</a></td><td class="desc"></td></tr>
<tr id="row_407_" class="odd"><td class="entry"><span style="width:16px;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">concurrent::GenericQueue< T, MultipleProducer, MultipleConsumer >::MultiConsumerSide</a></td><td class="desc"></td></tr>
<tr id="row_408_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="dd/ddd/classstorages_1_1mongo_1_1MultiMongo.html" target="_self">storages::mongo::MultiMongo</a></td><td class="desc"></td></tr>
<tr id="row_409_" class="odd"><td class="entry"><span style="width:16px;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">concurrent::GenericQueue< T, MultipleProducer, MultipleConsumer >::MultiProducerSide</a></td><td class="desc"></td></tr>
<tr id="row_410_" class="even"><td class="entry"><span style="width:16px;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">engine::Mutex</a></td><td class="desc">Std::mutex replacement for asynchronous tasks </td></tr>
<tr id="row_411_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_411_" class="arrow" onclick="toggleFolder('411_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="de/dac/classcrypto_1_1NamedAlgo.html" target="_self">crypto::NamedAlgo</a></td><td class="desc">Base class for a crypto algorithm implementation </td></tr>
<tr id="row_411_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_411_0_" class="arrow" onclick="toggleFolder('411_0_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="d8/d17/classcrypto_1_1Signer.html" target="_self">crypto::Signer</a></td><td class="desc">Base signer class </td></tr>
<tr id="row_411_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="dd/dd6/classcrypto_1_1DsaSigner.html" target="_self">crypto::DsaSigner< type, bits ></a></td><td class="desc">Generic signer for asymmetric cryptography </td></tr>
<tr id="row_411_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="d0/d37/classcrypto_1_1HmacShaSigner.html" target="_self">crypto::HmacShaSigner< bits ></a></td><td class="desc">HMAC-SHA signer </td></tr>
<tr id="row_411_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="db/d35/classcrypto_1_1SignerNone.html" target="_self">crypto::SignerNone</a></td><td class="desc">"none" algorithm signer </td></tr>
<tr id="row_411_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_411_1_" class="arrow" onclick="toggleFolder('411_1_')">►</span><span class="icona"><span class="icon">C</span></span><a class="el" href="dc/d53/classcrypto_1_1Verifier.html" target="_self">crypto::Verifier</a></td><td class="desc">Base verifier class </td></tr>
<tr id="row_411_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="dc/d8c/classcrypto_1_1DsaVerifier.html" target="_self">crypto::DsaVerifier< type, bits ></a></td><td class="desc">Generic verifier for asymmetric cryptography </td></tr>