pub struct PostgresConnectionInfo {
pub external_connection_string: Option<String>,
pub internal_connection_string: Option<String>,
pub password: Option<String>,
pub psql_command: Option<String>,
}Expand description
PostgresConnectionInfo
JSON schema
{
"type": "object",
"properties": {
"externalConnectionString": {
"type": "string",
"format": "password"
},
"internalConnectionString": {
"type": "string",
"format": "password"
},
"password": {
"type": "string",
"format": "password"
},
"psqlCommand": {
"type": "string",
"format": "password"
}
}
}Fields§
§external_connection_string: Option<String>§internal_connection_string: Option<String>§password: Option<String>§psql_command: Option<String>Trait Implementations§
Source§impl Clone for PostgresConnectionInfo
impl Clone for PostgresConnectionInfo
Source§fn clone(&self) -> PostgresConnectionInfo
fn clone(&self) -> PostgresConnectionInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PostgresConnectionInfo
impl Debug for PostgresConnectionInfo
Source§impl Default for PostgresConnectionInfo
impl Default for PostgresConnectionInfo
Source§impl<'de> Deserialize<'de> for PostgresConnectionInfo
impl<'de> Deserialize<'de> for PostgresConnectionInfo
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
Auto Trait Implementations§
impl Freeze for PostgresConnectionInfo
impl RefUnwindSafe for PostgresConnectionInfo
impl Send for PostgresConnectionInfo
impl Sync for PostgresConnectionInfo
impl Unpin for PostgresConnectionInfo
impl UnsafeUnpin for PostgresConnectionInfo
impl UnwindSafe for PostgresConnectionInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more