Trait IFeedEvents_Impl
pub trait IFeedEvents_Impl: IDispatch_Impl {
// Required methods
fn Error(&self) -> Result<()>;
fn FeedDeleted(&self, path: &BSTR) -> Result<()>;
fn FeedRenamed(&self, path: &BSTR, oldpath: &BSTR) -> Result<()>;
fn FeedUrlChanged(&self, path: &BSTR) -> Result<()>;
fn FeedMoved(&self, path: &BSTR, oldpath: &BSTR) -> Result<()>;
fn FeedDownloading(&self, path: &BSTR) -> Result<()>;
fn FeedDownloadCompleted(
&self,
path: &BSTR,
error: FEEDS_DOWNLOAD_ERROR,
) -> Result<()>;
fn FeedItemCountChanged(
&self,
path: &BSTR,
itemcounttype: i32,
) -> Result<()>;
}
Required Methods§
fn Error(&self) -> Result<()>
fn FeedDeleted(&self, path: &BSTR) -> Result<()>
fn FeedRenamed(&self, path: &BSTR, oldpath: &BSTR) -> Result<()>
fn FeedUrlChanged(&self, path: &BSTR) -> Result<()>
fn FeedMoved(&self, path: &BSTR, oldpath: &BSTR) -> Result<()>
fn FeedDownloading(&self, path: &BSTR) -> Result<()>
fn FeedDownloadCompleted( &self, path: &BSTR, error: FEEDS_DOWNLOAD_ERROR, ) -> Result<()>
fn FeedItemCountChanged(&self, path: &BSTR, itemcounttype: 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.