pub struct IAccPropServices(/* private fields */);
Implementations§
Source§impl IAccPropServices
impl IAccPropServices
pub unsafe fn SetPropValue<'a>( &self, pidstring: *const u8, dwidstringlen: u32, idprop: impl IntoParam<'a, Guid>, var: impl IntoParam<'a, VARIANT>, ) -> Result<()>
pub unsafe fn SetPropServer<'a>( &self, pidstring: *const u8, dwidstringlen: u32, paprops: *const Guid, cprops: i32, pserver: impl IntoParam<'a, IAccPropServer>, annoscope: AnnoScope, ) -> Result<()>
pub unsafe fn ClearProps( &self, pidstring: *const u8, dwidstringlen: u32, paprops: *const Guid, cprops: i32, ) -> Result<()>
pub unsafe fn SetHwndProp<'a>( &self, hwnd: impl IntoParam<'a, HWND>, idobject: u32, idchild: u32, idprop: impl IntoParam<'a, Guid>, var: impl IntoParam<'a, VARIANT>, ) -> Result<()>
pub unsafe fn SetHwndPropStr<'a>( &self, hwnd: impl IntoParam<'a, HWND>, idobject: u32, idchild: u32, idprop: impl IntoParam<'a, Guid>, str: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn SetHwndPropServer<'a>( &self, hwnd: impl IntoParam<'a, HWND>, idobject: u32, idchild: u32, paprops: *const Guid, cprops: i32, pserver: impl IntoParam<'a, IAccPropServer>, annoscope: AnnoScope, ) -> Result<()>
pub unsafe fn ClearHwndProps<'a>( &self, hwnd: impl IntoParam<'a, HWND>, idobject: u32, idchild: u32, paprops: *const Guid, cprops: i32, ) -> Result<()>
pub unsafe fn ComposeHwndIdentityString<'a>( &self, hwnd: impl IntoParam<'a, HWND>, idobject: u32, idchild: u32, ppidstring: *mut *mut u8, pdwidstringlen: *mut u32, ) -> Result<()>
pub unsafe fn DecomposeHwndIdentityString( &self, pidstring: *const u8, dwidstringlen: u32, phwnd: *mut HWND, pidobject: *mut u32, pidchild: *mut u32, ) -> Result<()>
Trait Implementations§
Source§impl Clone for IAccPropServices
impl Clone for IAccPropServices
Source§fn clone(&self) -> IAccPropServices
fn clone(&self) -> IAccPropServices
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IAccPropServices
impl Debug for IAccPropServices
Source§impl From<&IAccPropServices> for IUnknown
impl From<&IAccPropServices> for IUnknown
Source§fn from(value: &IAccPropServices) -> Self
fn from(value: &IAccPropServices) -> Self
Converts to this type from the input type.
Source§impl From<IAccPropServices> for IUnknown
impl From<IAccPropServices> for IUnknown
Source§fn from(value: IAccPropServices) -> Self
fn from(value: IAccPropServices) -> Self
Converts to this type from the input type.
Source§impl Interface for IAccPropServices
impl Interface for IAccPropServices
const IID: Guid
type Vtable = IAccPropServices_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for IAccPropServices
impl PartialEq for IAccPropServices
impl Eq for IAccPropServices
impl StructuralPartialEq for IAccPropServices
Auto Trait Implementations§
impl Freeze for IAccPropServices
impl RefUnwindSafe for IAccPropServices
impl !Send for IAccPropServices
impl !Sync for IAccPropServices
impl Unpin for IAccPropServices
impl UnwindSafe for IAccPropServices
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
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