pub(super) struct ServerCertDetails<'a> {
pub(super) cert_chain: CertificateChain<'a>,
pub(super) ocsp_response: Vec<u8>,
}
Fields§
§cert_chain: CertificateChain<'a>
§ocsp_response: Vec<u8>
Implementations§
Source§impl<'a> ServerCertDetails<'a>
impl<'a> ServerCertDetails<'a>
pub(super) fn new( cert_chain: CertificateChain<'a>, ocsp_response: Vec<u8>, ) -> Self
pub(super) fn into_owned(self) -> ServerCertDetails<'static>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ServerCertDetails<'a>
impl<'a> RefUnwindSafe for ServerCertDetails<'a>
impl<'a> Send for ServerCertDetails<'a>
impl<'a> Sync for ServerCertDetails<'a>
impl<'a> Unpin for ServerCertDetails<'a>
impl<'a> UnwindSafe for ServerCertDetails<'a>
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