Skip to main content

IStorageProviderBanners_Impl

Trait IStorageProviderBanners_Impl 

Source
pub trait IStorageProviderBanners_Impl: IUnknownImpl {
    // Required methods
    fn SetBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
        contentid: &PCWSTR,
    ) -> Result<(), Error>;
    fn ClearBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
    ) -> Result<(), Error>;
    fn ClearAllBanners(&self, provideridentity: &PCWSTR) -> Result<(), Error>;
    fn GetBanner(
        &self,
        provideridentity: &PCWSTR,
        subscriptionid: &PCWSTR,
    ) -> Result<PWSTR, Error>;
}

Required Methods§

Source

fn SetBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, contentid: &PCWSTR, ) -> Result<(), Error>

Source

fn ClearBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, ) -> Result<(), Error>

Source

fn ClearAllBanners(&self, provideridentity: &PCWSTR) -> Result<(), Error>

Source

fn GetBanner( &self, provideridentity: &PCWSTR, subscriptionid: &PCWSTR, ) -> Result<PWSTR, Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§