pub trait IADsBackLink_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn RemoteID(&self) -> Result<i32>;
    fn SetRemoteID(&self, lnremoteid: i32) -> Result<()>;
    fn ObjectName(&self) -> Result<BSTR>;
    fn SetObjectName(&self, bstrobjectname: &BSTR) -> Result<()>;
}

Required Methods§

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

fn SetRemoteID(&self, lnremoteid: i32) -> Result<()>

fn ObjectName(&self) -> Result<BSTR>

fn SetObjectName(&self, bstrobjectname: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§