pub enum ChannelBinding {
None,
Unsupported,
TlsUnique(Vec<u8>),
TlsExporter(Vec<u8>),
}
Expand description
Channel binding configuration.
Variants§
None
No channel binding data.
Unsupported
Advertise that the client does not think the server supports channel binding.
TlsUnique(Vec<u8>)
p=tls-unique channel binding data (for TLS 1.2).
TlsExporter(Vec<u8>)
p=tls-exporter channel binding data (for TLS 1.3).
Implementations§
Trait Implementations§
Source§impl Clone for ChannelBinding
impl Clone for ChannelBinding
Source§fn clone(&self) -> ChannelBinding
fn clone(&self) -> ChannelBinding
Returns a copy 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 moreSource§impl Debug for ChannelBinding
impl Debug for ChannelBinding
Source§impl PartialEq for ChannelBinding
impl PartialEq for ChannelBinding
impl Eq for ChannelBinding
impl StructuralPartialEq for ChannelBinding
Auto Trait Implementations§
impl Freeze for ChannelBinding
impl RefUnwindSafe for ChannelBinding
impl Send for ChannelBinding
impl Sync for ChannelBinding
impl Unpin for ChannelBinding
impl UnwindSafe for ChannelBinding
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