Trait ISyncMgrHandlerInfo_Impl
pub trait ISyncMgrHandlerInfo_Impl: IUnknownImpl {
// Required methods
fn GetType(&self) -> Result<SYNCMGR_HANDLER_TYPE>;
fn GetTypeLabel(&self) -> Result<PWSTR>;
fn GetComment(&self) -> Result<PWSTR>;
fn GetLastSyncTime(&self) -> Result<FILETIME>;
fn IsActive(&self) -> Result<()>;
fn IsEnabled(&self) -> Result<()>;
fn IsConnected(&self) -> Result<()>;
}
Required Methods§
fn GetType(&self) -> Result<SYNCMGR_HANDLER_TYPE>
fn GetTypeLabel(&self) -> Result<PWSTR>
fn GetComment(&self) -> Result<PWSTR>
fn GetLastSyncTime(&self) -> Result<FILETIME>
fn IsActive(&self) -> Result<()>
fn IsEnabled(&self) -> Result<()>
fn IsConnected(&self) -> 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.