pub trait ISysStorageProviderEventSource_Impl: Sized {
    // Required methods
    fn EventReceived(
        &self,
        handler: Option<&TypedEventHandler<ISysStorageProviderEventSource, SysStorageProviderEventReceivedEventArgs>>
    ) -> Result<EventRegistrationToken>;
    fn RemoveEventReceived(&self, token: &EventRegistrationToken) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§