pub trait IADsLargeInteger_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§