pub struct CertificateRequestPayloadTLS13 {
pub context: PayloadU8,
pub extensions: CertReqExtensions,
}
Fields
context: PayloadU8
extensions: CertReqExtensions
Implementations
sourceimpl CertificateRequestPayloadTLS13
impl CertificateRequestPayloadTLS13
pub fn find_extension(&self, ext: ExtensionType) -> Option<&CertReqExtension>
pub fn get_sigalgs_extension(&self) -> Option<&SupportedSignatureSchemes>
Trait Implementations
sourceimpl Codec for CertificateRequestPayloadTLS13
impl Codec for CertificateRequestPayloadTLS13
sourcefn read(r: &mut Reader<'_>) -> Option<CertificateRequestPayloadTLS13>
fn read(r: &mut Reader<'_>) -> Option<CertificateRequestPayloadTLS13>
Decode yourself by fiddling with the Reader
.
Return Some if it worked, None if not. Read more
sourcefn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of encode()
.
Auto Trait Implementations
impl RefUnwindSafe for CertificateRequestPayloadTLS13
impl Send for CertificateRequestPayloadTLS13
impl Sync for CertificateRequestPayloadTLS13
impl Unpin for CertificateRequestPayloadTLS13
impl UnwindSafe for CertificateRequestPayloadTLS13
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more