chromiumoxide/
auth.rs

1
2
3
4
5
6
7
8
/// Credentials for authentications
#[derive(Debug, Clone)]
pub struct Credentials {
    /// username
    pub username: String,
    /// password
    pub password: String,
}