pub struct VSHeader {
pub length: u16,
pub value_length: u16,
pub type_: u16,
pub key: Vec<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: u16§value_length: u16§type_: u16§key: Vec<WChar>Implementations§
Auto Trait Implementations§
impl Freeze for VSHeader
impl RefUnwindSafe for VSHeader
impl Send for VSHeader
impl Sync for VSHeader
impl Unpin for VSHeader
impl UnsafeUnpin for VSHeader
impl UnwindSafe for VSHeader
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