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§
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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".