pub struct VSHeader<'data> {
pub length: &'data u16,
pub value_length: &'data u16,
pub type_: &'data u16,
pub key: &'data [WChar],
}Expand description
Represents a header for a VS_VERSION structure.
This is not an officially documented header, but rather is added to make parsing these aspects of the structures a little bit easier.
Fields§
§length: &'data u16§value_length: &'data u16§type_: &'data u16§key: &'data [WChar]Implementations§
Auto Trait Implementations§
impl<'data> Freeze for VSHeader<'data>
impl<'data> RefUnwindSafe for VSHeader<'data>
impl<'data> Send for VSHeader<'data>
impl<'data> Sync for VSHeader<'data>
impl<'data> Unpin for VSHeader<'data>
impl<'data> UnwindSafe for VSHeader<'data>
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