pub trait IAMClockSlave_Impl: Sized {
    // Required methods
    fn SetErrorTolerance(&self, dwtolerance: u32) -> Result<()>;
    fn GetErrorTolerance(&self) -> Result<u32>;
}

Required Methods§

fn SetErrorTolerance(&self, dwtolerance: u32) -> Result<()>

fn GetErrorTolerance(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§