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