pub trait IModelKeyReference_Impl: Sized {
    // Required methods
    fn GetKeyName(&self) -> Result<BSTR>;
    fn GetOriginalObject(&self) -> Result<IModelObject>;
    fn GetContextObject(&self) -> Result<IModelObject>;
    fn GetKey(
        &self,
        object: *mut Option<IModelObject>,
        metadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
    fn GetKeyValue(
        &self,
        object: *mut Option<IModelObject>,
        metadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
    fn SetKey(
        &self,
        object: Option<&IModelObject>,
        metadata: Option<&IKeyStore>,
    ) -> Result<()>;
    fn SetKeyValue(&self, object: Option<&IModelObject>) -> Result<()>;
}

Required Methods§

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

fn GetOriginalObject(&self) -> Result<IModelObject>

fn GetContextObject(&self) -> Result<IModelObject>

fn GetKey( &self, object: *mut Option<IModelObject>, metadata: *mut Option<IKeyStore>, ) -> Result<()>

fn GetKeyValue( &self, object: *mut Option<IModelObject>, metadata: *mut Option<IKeyStore>, ) -> Result<()>

fn SetKey( &self, object: Option<&IModelObject>, metadata: Option<&IKeyStore>, ) -> Result<()>

fn SetKeyValue(&self, object: Option<&IModelObject>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§