pub trait IWebSocketInformation2_Impl: Sized + IWebSocketInformation_Impl {
// Required methods
fn ServerCertificate(&self) -> Result<Certificate>;
fn ServerCertificateErrorSeverity(&self) -> Result<SocketSslErrorSeverity>;
fn ServerCertificateErrors(
&self,
) -> Result<IVectorView<ChainValidationResult>>;
fn ServerIntermediateCertificates(&self) -> Result<IVectorView<Certificate>>;
}
Required Methods§
fn ServerCertificate(&self) -> Result<Certificate>
fn ServerCertificateErrorSeverity(&self) -> Result<SocketSslErrorSeverity>
fn ServerCertificateErrors(&self) -> Result<IVectorView<ChainValidationResult>>
fn ServerIntermediateCertificates(&self) -> Result<IVectorView<Certificate>>
Object Safety§
This trait is not object safe.