pub trait IVdsProviderPrivate_Impl: Sized {
    // Required methods
    fn GetObject(
        &self,
        objectid: &GUID,
        type: VDS_OBJECT_TYPE
    ) -> Result<IUnknown>;
    fn OnLoad(
        &self,
        pwszmachinename: &PCWSTR,
        pcallbackobject: Option<&IUnknown>
    ) -> Result<()>;
    fn OnUnload(&self, bforceunload: BOOL) -> Result<()>;
}

Required Methods§

fn GetObject(&self, objectid: &GUID, type: VDS_OBJECT_TYPE) -> Result<IUnknown>

fn OnLoad( &self, pwszmachinename: &PCWSTR, pcallbackobject: Option<&IUnknown> ) -> Result<()>

fn OnUnload(&self, bforceunload: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§