irc-async 0.1.0

async irc library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Configuration for the IRC client
pub struct Config {
    /// The hostname to connect to
    pub host: String,

    /// The port of the IRC server
    pub port: u16,

    /// Whether or not to enable SSL
    pub ssl: bool,

    /// The nick to connect with
    pub nick: String,
}