useserde::{Deserialize, Serialize};usestd::collections::HashMap;/// Connection
#[derive(Serialize, Deserialize)]pubstructConnection{/// The connection's identifier.
id: String,
/// The name of the connection.
name: String,
/// The type of the connection, related to the identity provider.
strategy: String,
/// Connection name used in login screen.
display_name: String,
options:HashMap<String, String>,
}