pub struct MssqlTls {
pub mode: MssqlTlsMode,
pub ca_cert_path: Option<PathBuf>,
}Expand description
TLS configuration for an MSSQL connection.
Matches the YAML shape tls: { type: <mode>, ca_cert_path: <path> }.
Fields§
§mode: MssqlTlsModeEncryption mode. Defaults to MssqlTlsMode::Prefer.
ca_cert_path: Option<PathBuf>Optional path to a CA certificate (PEM/DER) to trust for server
validation. Ignored when mode is MssqlTlsMode::Disable.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MssqlTls
impl<'de> Deserialize<'de> for MssqlTls
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MssqlTls, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MssqlTls, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for MssqlTls
impl JsonSchema for MssqlTls
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Serialize for MssqlTls
impl Serialize for MssqlTls
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for MssqlTls
impl StructuralPartialEq for MssqlTls
Auto Trait Implementations§
impl Freeze for MssqlTls
impl RefUnwindSafe for MssqlTls
impl Send for MssqlTls
impl Sync for MssqlTls
impl Unpin for MssqlTls
impl UnsafeUnpin for MssqlTls
impl UnwindSafe for MssqlTls
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.