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
//! # Introduction
//! The aim of this crate is to be a complete, idiomatic wrapper
//! for the Entrez API.
//!
//! The API is designed to be simple but at the same time,
//! flexible enough for advanced use cases.
//!
//! # Usage
//! There are two categories of tools provided by this library:
//! - *Wrappers* for the Entrez Eutilities.
//! - *Parsers* to parse XML results obtained using the Eutilities.
//! ### Wrappers:
//! The [eutils] module contains the wrappers.
//! Currently available wrappers are:
//! - [ESearch](eutils::ESearch)
//! - [EFetch](eutils::EFetch)
//!
//! ### Parsers:
//! The [parser] module contains the parsers.
//! Currently available parsers are:
//! - [esearch](parser::esearch)
//! - [pubmed](parser::pubmed)