Trait IOpcPartEnumerator_Impl
pub trait IOpcPartEnumerator_Impl: IUnknownImpl {
// Required methods
fn MoveNext(&self) -> Result<BOOL>;
fn MovePrevious(&self) -> Result<BOOL>;
fn GetCurrent(&self) -> Result<IOpcPart>;
fn Clone(&self) -> Result<IOpcPartEnumerator>;
}
Required Methods§
fn MoveNext(&self) -> Result<BOOL>
fn MovePrevious(&self) -> Result<BOOL>
fn GetCurrent(&self) -> Result<IOpcPart>
fn Clone(&self) -> Result<IOpcPartEnumerator>
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.