pub trait IStorageProviderKnownFolderSyncInfoSource_Impl: Sized {
    // Required methods
    fn GetKnownFolderSyncInfo(
        &self
    ) -> Result<StorageProviderKnownFolderSyncInfo>;
    fn KnownFolderSyncInfoChanged(
        &self,
        handler: Option<&TypedEventHandler<IStorageProviderKnownFolderSyncInfoSource, IInspectable>>
    ) -> Result<EventRegistrationToken>;
    fn RemoveKnownFolderSyncInfoChanged(
        &self,
        token: &EventRegistrationToken
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§