pub trait IWindowsDevicesAllJoynBusObjectInterop_Impl: Sized {
    // Required methods
    fn AddPropertyGetHandler(
        &self,
        context: *const c_void,
        interfacename: &HSTRING,
        callback: isize
    ) -> Result<()>;
    fn AddPropertySetHandler(
        &self,
        context: *const c_void,
        interfacename: &HSTRING,
        callback: isize
    ) -> Result<()>;
    fn Win32Handle(&self) -> Result<u64>;
}

Required Methods§

fn AddPropertyGetHandler( &self, context: *const c_void, interfacename: &HSTRING, callback: isize ) -> Result<()>

fn AddPropertySetHandler( &self, context: *const c_void, interfacename: &HSTRING, callback: isize ) -> Result<()>

fn Win32Handle(&self) -> Result<u64>

Object Safety§

This trait is not object safe.

Implementors§