irc_async/client/
config.rs

1/// Configuration for the IRC client
2pub struct Config {
3    /// The hostname to connect to
4    pub host: String,
5
6    /// The port of the IRC server
7    pub port: u16,
8
9    /// Whether or not to enable SSL
10    pub ssl: bool,
11
12    /// The nick to connect with
13    pub nick: String,
14}