pub trait IStorageProviderUriSource_Impl: Sized {
    // Required methods
    fn GetPathForContentUri(
        &self,
        contenturi: &HSTRING,
        result: Option<&StorageProviderGetPathForContentUriResult>
    ) -> Result<()>;
    fn GetContentInfoForPath(
        &self,
        path: &HSTRING,
        result: Option<&StorageProviderGetContentInfoForPathResult>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§