pub trait IGetClusterObjectInfo_Impl: Sized {
    // Required methods
    fn GetObjectName(
        &self,
        lobjindex: i32,
        lpszname: BSTR,
        pcchname: *mut i32
    ) -> Result<()>;
    fn GetObjectType(&self, lobjindex: i32) -> CLUADMEX_OBJECT_TYPE;
}

Required Methods§

fn GetObjectName( &self, lobjindex: i32, lpszname: BSTR, pcchname: *mut i32 ) -> Result<()>

fn GetObjectType(&self, lobjindex: i32) -> CLUADMEX_OBJECT_TYPE

Object Safety§

This trait is not object safe.

Implementors§