Struct google_datastream1::api::MysqlProfile
source · pub struct MysqlProfile {
pub hostname: Option<String>,
pub password: Option<String>,
pub port: Option<i32>,
pub ssl_config: Option<MysqlSslConfig>,
pub username: Option<String>,
}Expand description
MySQL database profile.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hostname: Option<String>Required. Hostname for the MySQL connection.
password: Option<String>Required. Input only. Password for the MySQL connection.
port: Option<i32>Port for the MySQL connection, default value is 3306.
ssl_config: Option<MysqlSslConfig>SSL configuration for the MySQL connection.
username: Option<String>Required. Username for the MySQL connection.
Trait Implementations§
source§impl Clone for MysqlProfile
impl Clone for MysqlProfile
source§fn clone(&self) -> MysqlProfile
fn clone(&self) -> MysqlProfile
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MysqlProfile
impl Debug for MysqlProfile
source§impl Default for MysqlProfile
impl Default for MysqlProfile
source§fn default() -> MysqlProfile
fn default() -> MysqlProfile
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for MysqlProfile
impl<'de> Deserialize<'de> for MysqlProfile
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more