pub trait ITILSConfig_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Port(&self) -> Result<i32>;
    fn SetPort(&self, port: i32) -> Result<()>;
}

Required Methods§

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

fn SetPort(&self, port: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§