pub trait IDefaultLocation_Impl: Sized {
    // Required methods
    fn SetReport(
        &self,
        reporttype: *const GUID,
        plocationreport: Option<&ILocationReport>
    ) -> Result<()>;
    fn GetReport(&self, reporttype: *const GUID) -> Result<ILocationReport>;
}

Required Methods§

fn SetReport( &self, reporttype: *const GUID, plocationreport: Option<&ILocationReport> ) -> Result<()>

fn GetReport(&self, reporttype: *const GUID) -> Result<ILocationReport>

Object Safety§

This trait is not object safe.

Implementors§