pop3_client/
lib.rs

1mod builder;
2mod client;
3mod error;
4mod request;
5mod response;
6
7#[cfg(feature = "with-rustls")]
8use {
9    rustls::StreamOwned,
10    rustls::{ClientConfig, ClientSession},
11    std::sync::Arc,
12    webpki::DNSNameRef,
13};
14
15pub use error::Pop3Error;
16pub use builder::Builder;
17pub use client::*;
18pub use request::Command;
19pub use response::Response;
20