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