#[repr(C)]pub struct svn_auth_ssl_server_cert_info_t {
pub hostname: *const c_char,
pub fingerprint: *const c_char,
pub valid_from: *const c_char,
pub valid_until: *const c_char,
pub issuer_dname: *const c_char,
pub ascii_cert: *const c_char,
}
Expand description
SSL server certificate information used by @c SVN_AUTH_CRED_SSL_SERVER_TRUST providers.
Fields§
§hostname: *const c_char
Primary CN
fingerprint: *const c_char
ASCII fingerprint
valid_from: *const c_char
ASCII date from which the certificate is valid
valid_until: *const c_char
ASCII date until which the certificate is valid
issuer_dname: *const c_char
DN of the certificate issuer
ascii_cert: *const c_char
Base-64 encoded DER certificate representation
Trait Implementations§
Source§impl Clone for svn_auth_ssl_server_cert_info_t
impl Clone for svn_auth_ssl_server_cert_info_t
Source§fn clone(&self) -> svn_auth_ssl_server_cert_info_t
fn clone(&self) -> svn_auth_ssl_server_cert_info_t
Returns a duplicate 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 moreimpl Copy for svn_auth_ssl_server_cert_info_t
Auto Trait Implementations§
impl Freeze for svn_auth_ssl_server_cert_info_t
impl RefUnwindSafe for svn_auth_ssl_server_cert_info_t
impl !Send for svn_auth_ssl_server_cert_info_t
impl !Sync for svn_auth_ssl_server_cert_info_t
impl Unpin for svn_auth_ssl_server_cert_info_t
impl UnwindSafe for svn_auth_ssl_server_cert_info_t
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