Trait IXFeedEvents_Impl
pub trait IXFeedEvents_Impl: IUnknownImpl {
// Required methods
fn Error(&self) -> Result<()>;
fn FeedDeleted(&self, pszpath: &PCWSTR) -> Result<()>;
fn FeedRenamed(&self, pszpath: &PCWSTR, pszoldpath: &PCWSTR) -> Result<()>;
fn FeedUrlChanged(&self, pszpath: &PCWSTR) -> Result<()>;
fn FeedMoved(&self, pszpath: &PCWSTR, pszoldpath: &PCWSTR) -> Result<()>;
fn FeedDownloading(&self, pszpath: &PCWSTR) -> Result<()>;
fn FeedDownloadCompleted(
&self,
pszpath: &PCWSTR,
fde: FEEDS_DOWNLOAD_ERROR,
) -> Result<()>;
fn FeedItemCountChanged(
&self,
pszpath: &PCWSTR,
feicfflags: i32,
) -> Result<()>;
}
Required Methods§
fn Error(&self) -> Result<()>
fn FeedDeleted(&self, pszpath: &PCWSTR) -> Result<()>
fn FeedRenamed(&self, pszpath: &PCWSTR, pszoldpath: &PCWSTR) -> Result<()>
fn FeedUrlChanged(&self, pszpath: &PCWSTR) -> Result<()>
fn FeedMoved(&self, pszpath: &PCWSTR, pszoldpath: &PCWSTR) -> Result<()>
fn FeedDownloading(&self, pszpath: &PCWSTR) -> Result<()>
fn FeedDownloadCompleted( &self, pszpath: &PCWSTR, fde: FEEDS_DOWNLOAD_ERROR, ) -> Result<()>
fn FeedItemCountChanged(&self, pszpath: &PCWSTR, feicfflags: i32) -> Result<()>
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.