pub trait ISysStorageProviderHandlerFactory_Impl: Sized {
    // Required methods
    fn GetHttpRequestProvider(
        &self,
        syncrootid: &HSTRING
    ) -> Result<ISysStorageProviderHttpRequestProvider>;
    fn GetEventSource(
        &self,
        syncrootid: &HSTRING,
        eventname: &HSTRING
    ) -> Result<ISysStorageProviderEventSource>;
}

Required Methods§

fn GetHttpRequestProvider( &self, syncrootid: &HSTRING ) -> Result<ISysStorageProviderHttpRequestProvider>

fn GetEventSource( &self, syncrootid: &HSTRING, eventname: &HSTRING ) -> Result<ISysStorageProviderEventSource>

Object Safety§

This trait is not object safe.

Implementors§