pub trait IStorageProviderBanners_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§