pub trait IUpdateHistoryEntry_Impl: Sized + IDispatch_Impl {
Show 14 methods // Required methods fn Operation(&self) -> Result<UpdateOperation>; fn ResultCode(&self) -> Result<OperationResultCode>; fn HResult(&self) -> Result<i32>; fn Date(&self) -> Result<f64>; fn UpdateIdentity(&self) -> Result<IUpdateIdentity>; fn Title(&self) -> Result<BSTR>; fn Description(&self) -> Result<BSTR>; fn UnmappedResultCode(&self) -> Result<i32>; fn ClientApplicationID(&self) -> Result<BSTR>; fn ServerSelection(&self) -> Result<ServerSelection>; fn ServiceID(&self) -> Result<BSTR>; fn UninstallationSteps(&self) -> Result<IStringCollection>; fn UninstallationNotes(&self) -> Result<BSTR>; fn SupportUrl(&self) -> Result<BSTR>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§