Struct rustls::HandshakeSignatureValid
source · [−]pub struct HandshakeSignatureValid(_);
Expand description
Marker types. These are used to bind the fact some verification (certificate chain or handshake signature) has taken place into protocol states. We use this to have the compiler check that there are no ‘goto fail’-style elisions of important checks before we reach the traffic stage.
These types are public, but cannot be directly constructed. This
means their origins can be precisely determined by looking
for their assertion
constructors.
Implementations
Auto Trait Implementations
impl RefUnwindSafe for HandshakeSignatureValid
impl Send for HandshakeSignatureValid
impl Sync for HandshakeSignatureValid
impl Unpin for HandshakeSignatureValid
impl UnwindSafe for HandshakeSignatureValid
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more