pub trait IADsTimestamp_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn WholeSeconds(&self) -> Result<i32>;
    fn SetWholeSeconds(&self, lnwholeseconds: i32) -> Result<()>;
    fn EventID(&self) -> Result<i32>;
    fn SetEventID(&self, lneventid: i32) -> Result<()>;
}

Required Methods§

fn WholeSeconds(&self) -> Result<i32>

fn SetWholeSeconds(&self, lnwholeseconds: i32) -> Result<()>

fn EventID(&self) -> Result<i32>

fn SetEventID(&self, lneventid: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§