Trait IStorageProviderBanners_Impl
pub trait IStorageProviderBanners_Impl: IUnknownImpl {
    // Required methods
    fn SetBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
        contentid: &PCWSTR,
    ) -> Result<()>;
    fn ClearBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
    ) -> Result<()>;
    fn ClearAllBanners(&self, provideridentity: &PCWSTR) -> Result<()>;
    fn GetBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
    ) -> Result<PWSTR>;
}Required Methods§
fn SetBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, contentid: &PCWSTR, ) -> Result<()>
fn ClearBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, ) -> Result<()>
fn ClearAllBanners(&self, provideridentity: &PCWSTR) -> Result<()>
fn GetBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, ) -> Result<PWSTR>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.