pub struct ParsedShadowFrameWide {
pub plaintext_len: u32,
pub salt: [u8; 16],
pub nonce: [u8; 12],
pub ciphertext: Vec<u8>,
}Expand description
Parsed wide shadow frame — output of parse_shadow_frame_wide.
Fields§
§plaintext_len: u32§salt: [u8; 16]§nonce: [u8; 12]§ciphertext: Vec<u8>Auto Trait Implementations§
impl Freeze for ParsedShadowFrameWide
impl RefUnwindSafe for ParsedShadowFrameWide
impl Send for ParsedShadowFrameWide
impl Sync for ParsedShadowFrameWide
impl Unpin for ParsedShadowFrameWide
impl UnsafeUnpin for ParsedShadowFrameWide
impl UnwindSafe for ParsedShadowFrameWide
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