Struct google_datastream1::api::PostgresqlProfile
source · pub struct PostgresqlProfile {
pub database: Option<String>,
pub hostname: Option<String>,
pub password: Option<String>,
pub port: Option<i32>,
pub username: Option<String>,
}Expand description
PostgreSQL database profile.
This type is not used in any activity, and only used as part of another schema.
Fields§
§database: Option<String>Required. Database for the PostgreSQL connection.
hostname: Option<String>Required. Hostname for the PostgreSQL connection.
password: Option<String>Required. Password for the PostgreSQL connection.
port: Option<i32>Port for the PostgreSQL connection, default value is 5432.
username: Option<String>Required. Username for the PostgreSQL connection.
Trait Implementations§
source§impl Clone for PostgresqlProfile
impl Clone for PostgresqlProfile
source§fn clone(&self) -> PostgresqlProfile
fn clone(&self) -> PostgresqlProfile
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 PostgresqlProfile
impl Debug for PostgresqlProfile
source§impl Default for PostgresqlProfile
impl Default for PostgresqlProfile
source§fn default() -> PostgresqlProfile
fn default() -> PostgresqlProfile
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PostgresqlProfile
impl<'de> Deserialize<'de> for PostgresqlProfile
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