Struct microsoft_dia::bindings::IDiaAddressMap
#[repr(transparent)]pub struct IDiaAddressMap(_);Implementations§
§impl IDiaAddressMap
impl IDiaAddressMap
pub unsafe fn addressMapEnabled(&self) -> Result<BOOL>
pub unsafe fn SetaddressMapEnabled<P0>(&self, newval: P0) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn relativeVirtualAddressEnabled(&self) -> Result<BOOL>
pub unsafe fn SetrelativeVirtualAddressEnabled<P0>( &self, newval: P0 ) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn imageAlign(&self) -> Result<u32>
pub unsafe fn SetimageAlign(&self, newval: u32) -> Result<()>
pub unsafe fn set_imageHeaders<P0>( &self, pbdata: &[u8], originalheaders: P0 ) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn set_addressMap<P0>( &self, pdata: &[DiaAddressMapEntry], imagetosymbols: P0 ) -> Result<()>where P0: IntoParam<BOOL>,
Trait Implementations§
§impl Clone for IDiaAddressMap
impl Clone for IDiaAddressMap
§impl ComInterface for IDiaAddressMap
impl ComInterface for IDiaAddressMap
§impl Debug for IDiaAddressMap
impl Debug for IDiaAddressMap
§impl Interface for IDiaAddressMap
impl Interface for IDiaAddressMap
type Vtable = IDiaAddressMap_Vtbl
source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§impl PartialEq<IDiaAddressMap> for IDiaAddressMap
impl PartialEq<IDiaAddressMap> for IDiaAddressMap
impl Eq for IDiaAddressMap
Auto Trait Implementations§
impl RefUnwindSafe for IDiaAddressMap
impl !Send for IDiaAddressMap
impl !Sync for IDiaAddressMap
impl Unpin for IDiaAddressMap
impl UnwindSafe for IDiaAddressMap
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