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
/// Traits and types for NNTP commands
///
/// The [`NntpCommand`](command::NntpCommand) trait can be used to implement commands not (yet)
/// provided by Brokaw.
///
/// Brokaw provides implementations for most of the commands
/// in [RFC 3977](https://tools.ietf.org/html/rfc3977).
///
/// One notable exception is the [`LISTGROUP`](https://tools.ietf.org/html/rfc3977#section-6.1.2)
/// command. This command is left unimplemented as it does not adhere to the response standards
/// defined in the RFC.
/// Typed NNTP responses for individual commands
/// NNTP response codes
/// The number of an article relative to a specific Newsgroup
///
/// Per [RFC 3977](https://tools.ietf.org/html/rfc3977#section-6) article numbers should fit within
/// 31-bits.
pub type ArticleNumber = u32;
/// Re-exports of traits and response types
pub use NntpCommand;
pub use *;
pub use *;