pub trait NewConnectionConfig: Sized {
    // Required method
    fn new() -> Result<Self, ClientError>;
}

Required Methods§

Implementors§