pub struct CryptoFrame {
pub offset: u64,
pub data: Vec<u8>,
}Expand description
A single CRYPTO frame extracted from decrypted QUIC payload.
Fields§
§offset: u64Byte offset within the crypto stream where this fragment begins.
data: Vec<u8>The raw data carried by this frame.
Trait Implementations§
Source§impl Clone for CryptoFrame
impl Clone for CryptoFrame
Source§fn clone(&self) -> CryptoFrame
fn clone(&self) -> CryptoFrame
Returns a duplicate 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 CryptoFrame
impl Debug for CryptoFrame
Source§impl PartialEq for CryptoFrame
impl PartialEq for CryptoFrame
impl StructuralPartialEq for CryptoFrame
Auto Trait Implementations§
impl Freeze for CryptoFrame
impl RefUnwindSafe for CryptoFrame
impl Send for CryptoFrame
impl Sync for CryptoFrame
impl Unpin for CryptoFrame
impl UnwindSafe for CryptoFrame
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