Struct rustls::quic::DirectionalKeys
source · pub struct DirectionalKeys {
pub header: Box<dyn HeaderProtectionKey>,
pub packet: Box<dyn PacketKey>,
}
Expand description
Keys used to communicate in a single direction
Fields§
§header: Box<dyn HeaderProtectionKey>
Encrypts or decrypts a packet’s headers
packet: Box<dyn PacketKey>
Encrypts or decrypts the payload of a packet
Auto Trait Implementations§
impl Freeze for DirectionalKeys
impl !RefUnwindSafe for DirectionalKeys
impl Send for DirectionalKeys
impl Sync for DirectionalKeys
impl Unpin for DirectionalKeys
impl !UnwindSafe for DirectionalKeys
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