Struct SslCertificateDataRecord
pub struct SslCertificateDataRecord {
pub encoding: SslCertificateEncoding,
pub certificate_data: Vec<u8>,
}Expand description
SSL certificate data record containing certificate data along with encoding Mirrors System::SSLCertificateDataRecord from C++
Fields§
§encoding: SslCertificateEncodingSSL certificate encoding type
certificate_data: Vec<u8>Certificate data (binary data)
Trait Implementations§
§impl Clone for SslCertificateDataRecord
impl Clone for SslCertificateDataRecord
§fn clone(&self) -> SslCertificateDataRecord
fn clone(&self) -> SslCertificateDataRecord
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 more§impl Debug for SslCertificateDataRecord
impl Debug for SslCertificateDataRecord
§impl Default for SslCertificateDataRecord
impl Default for SslCertificateDataRecord
Auto Trait Implementations§
impl Freeze for SslCertificateDataRecord
impl RefUnwindSafe for SslCertificateDataRecord
impl Send for SslCertificateDataRecord
impl Sync for SslCertificateDataRecord
impl Unpin for SslCertificateDataRecord
impl UnwindSafe for SslCertificateDataRecord
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