#[repr(C)]pub struct PgBackendSSLStatus {
pub ssl_bits: c_int,
pub ssl_version: [c_char; 64],
pub ssl_cipher: [c_char; 64],
pub ssl_client_dn: [c_char; 64],
pub ssl_client_serial: [c_char; 64],
pub ssl_issuer_dn: [c_char; 64],
}
Fields§
§ssl_bits: c_int
§ssl_version: [c_char; 64]
§ssl_cipher: [c_char; 64]
§ssl_client_dn: [c_char; 64]
§ssl_client_serial: [c_char; 64]
§ssl_issuer_dn: [c_char; 64]
Trait Implementations§
Source§impl Clone for PgBackendSSLStatus
impl Clone for PgBackendSSLStatus
Source§fn clone(&self) -> PgBackendSSLStatus
fn clone(&self) -> PgBackendSSLStatus
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 PgBackendSSLStatus
impl Debug for PgBackendSSLStatus
Source§impl Default for PgBackendSSLStatus
impl Default for PgBackendSSLStatus
impl Copy for PgBackendSSLStatus
Auto Trait Implementations§
impl Freeze for PgBackendSSLStatus
impl RefUnwindSafe for PgBackendSSLStatus
impl Send for PgBackendSSLStatus
impl Sync for PgBackendSSLStatus
impl Unpin for PgBackendSSLStatus
impl UnwindSafe for PgBackendSSLStatus
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