pub trait IPortableDeviceServiceMethods_Impl: Sized {
    // Required methods
    fn Invoke(
        &self,
        method: *const GUID,
        pparameters: Option<&IPortableDeviceValues>,
        ppresults: *mut Option<IPortableDeviceValues>,
    ) -> Result<()>;
    fn InvokeAsync(
        &self,
        method: *const GUID,
        pparameters: Option<&IPortableDeviceValues>,
        pcallback: Option<&IPortableDeviceServiceMethodCallback>,
    ) -> Result<()>;
    fn Cancel(
        &self,
        pcallback: Option<&IPortableDeviceServiceMethodCallback>,
    ) -> Result<()>;
}

Required Methods§

fn Invoke( &self, method: *const GUID, pparameters: Option<&IPortableDeviceValues>, ppresults: *mut Option<IPortableDeviceValues>, ) -> Result<()>

fn InvokeAsync( &self, method: *const GUID, pparameters: Option<&IPortableDeviceValues>, pcallback: Option<&IPortableDeviceServiceMethodCallback>, ) -> Result<()>

fn Cancel( &self, pcallback: Option<&IPortableDeviceServiceMethodCallback>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§