pub trait IKeyStore_Impl: Sized {
    // Required methods
    fn GetKey(
        &self,
        key: &PCWSTR,
        object: *mut Option<IModelObject>,
        metadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
    fn SetKey(
        &self,
        key: &PCWSTR,
        object: Option<&IModelObject>,
        metadata: Option<&IKeyStore>,
    ) -> Result<()>;
    fn GetKeyValue(
        &self,
        key: &PCWSTR,
        object: *mut Option<IModelObject>,
        metadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
    fn SetKeyValue(
        &self,
        key: &PCWSTR,
        object: Option<&IModelObject>,
    ) -> Result<()>;
    fn ClearKeys(&self) -> Result<()>;
}

Required Methods§

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

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

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

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

fn ClearKeys(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§