#[repr(C)]pub struct VCFeatureInfo {
pub pre_vc_plusplus_count: u32,
pub c_and_cplusplus_count: u32,
pub guard_stack_count: u32,
pub sdl_count: u32,
pub guard_count: u32,
}Expand description
Represents the IMAGE_DEBUG_VC_FEATURE_ENTRY structure
Fields§
§pre_vc_plusplus_count: u32The count of pre-VC++
c_and_cplusplus_count: u32The count of C and C++
guard_stack_count: u32The count of guard stack
sdl_count: u32The count of SDL
guard_count: u32The count of guard
Implementations§
Source§impl<'a> VCFeatureInfo
impl<'a> VCFeatureInfo
pub fn parse(bytes: &'a [u8], idd: &ImageDebugDirectory) -> Result<Self>
pub fn parse_with_opts( bytes: &'a [u8], idd: &ImageDebugDirectory, opts: &ParseOptions, ) -> Result<Self>
Trait Implementations§
Source§impl Clone for VCFeatureInfo
impl Clone for VCFeatureInfo
Source§fn clone(&self) -> VCFeatureInfo
fn clone(&self) -> VCFeatureInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VCFeatureInfo
Source§impl Debug for VCFeatureInfo
impl Debug for VCFeatureInfo
Source§impl Default for VCFeatureInfo
impl Default for VCFeatureInfo
Source§fn default() -> VCFeatureInfo
fn default() -> VCFeatureInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for VCFeatureInfo
impl PartialEq for VCFeatureInfo
Source§fn eq(&self, other: &VCFeatureInfo) -> bool
fn eq(&self, other: &VCFeatureInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VCFeatureInfo
Auto Trait Implementations§
impl Freeze for VCFeatureInfo
impl RefUnwindSafe for VCFeatureInfo
impl Send for VCFeatureInfo
impl Sync for VCFeatureInfo
impl Unpin for VCFeatureInfo
impl UnsafeUnpin for VCFeatureInfo
impl UnwindSafe for VCFeatureInfo
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