1/// This struct represents the credentials and receives the api key and api secret as parameters. 2#[derive(Clone, Debug)] 3pub struct BinanceCredentials { 4 pub api_key: String, 5 pub api_secret: String, 6}