Trait IADsLargeInteger_Impl
pub trait IADsLargeInteger_Impl: IDispatch_Impl {
// Required methods
fn HighPart(&self) -> Result<i32>;
fn SetHighPart(&self, lnhighpart: i32) -> Result<()>;
fn LowPart(&self) -> Result<i32>;
fn SetLowPart(&self, lnlowpart: i32) -> Result<()>;
}
Required Methods§
fn HighPart(&self) -> Result<i32>
fn SetHighPart(&self, lnhighpart: i32) -> Result<()>
fn LowPart(&self) -> Result<i32>
fn SetLowPart(&self, lnlowpart: i32) -> 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.