pub trait IProgressState_Impl: INotifyPropChanged_Impl {
// Required methods
fn IsIndeterminate(&self) -> Result<bool>;
fn ProgressPercent(&self) -> Result<u32>;
}Required Methods§
fn IsIndeterminate(&self) -> Result<bool>
fn ProgressPercent(&self) -> Result<u32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".