1
2
3
4
5
6
/// The ConnectionConfig determines certain characteristics of how the
/// connection should behave.
pub struct ConnectionConfig {
    /// This is the name of the connection. This must be unique.
    pub name: &'static str,
}