pub enum ExternalPostgresSslMode {
VerifyFull,
Disable,
}Expand description
TLS policy for an operator-provided / BYO Postgres database.
Unlike libpq’s ambiguous prefer mode, both choices map exactly to the
connection settings exposed by every supported SDK.
Variants§
VerifyFull
Require TLS and verify the server certificate and hostname.
Disable
Connect over plaintext. Intended only for explicitly configured legacy servers.
Trait Implementations§
Source§impl Clone for ExternalPostgresSslMode
impl Clone for ExternalPostgresSslMode
Source§fn clone(&self) -> ExternalPostgresSslMode
fn clone(&self) -> ExternalPostgresSslMode
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 moreimpl Copy for ExternalPostgresSslMode
Source§impl Debug for ExternalPostgresSslMode
impl Debug for ExternalPostgresSslMode
Source§impl Default for ExternalPostgresSslMode
impl Default for ExternalPostgresSslMode
Source§fn default() -> ExternalPostgresSslMode
fn default() -> ExternalPostgresSslMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalPostgresSslMode
impl<'de> Deserialize<'de> for ExternalPostgresSslMode
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
impl Eq for ExternalPostgresSslMode
Source§impl PartialEq for ExternalPostgresSslMode
impl PartialEq for ExternalPostgresSslMode
Source§impl Serialize for ExternalPostgresSslMode
impl Serialize for ExternalPostgresSslMode
impl StructuralPartialEq for ExternalPostgresSslMode
Auto Trait Implementations§
impl Freeze for ExternalPostgresSslMode
impl RefUnwindSafe for ExternalPostgresSslMode
impl Send for ExternalPostgresSslMode
impl Sync for ExternalPostgresSslMode
impl Unpin for ExternalPostgresSslMode
impl UnsafeUnpin for ExternalPostgresSslMode
impl UnwindSafe for ExternalPostgresSslMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.