pub struct Security {
pub ssl_server_dn_match: bool,
pub ssl_server_cert_dn: Option<String>,
pub wallet_location: Option<String>,
pub extra: Vec<(String, String)>,
}Expand description
Resolved SECURITY settings (only meaningful for TCPS addresses).
Fields§
§ssl_server_dn_match: boolSSL_SERVER_DN_MATCH (defaults to true).
ssl_server_cert_dn: Option<String>SSL_SERVER_CERT_DN=.
wallet_location: Option<String>MY_WALLET_DIRECTORY= / WALLET_LOCATION=.
extra: Vec<(String, String)>Unrecognised SECURITY keys, passed through verbatim.
Trait Implementations§
impl Eq for Security
impl StructuralPartialEq for Security
Auto Trait Implementations§
impl Freeze for Security
impl RefUnwindSafe for Security
impl Send for Security
impl Sync for Security
impl Unpin for Security
impl UnsafeUnpin for Security
impl UnwindSafe for Security
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