pub trait IKeyValuePair_Impl<K, V>: Sized
where K: RuntimeType + 'static, V: RuntimeType + 'static,
{ // Required methods fn Key(&self) -> Result<K>; fn Value(&self) -> Result<V>; }

Required Methods§

fn Key(&self) -> Result<K>

fn Value(&self) -> Result<V>

Object Safety§

This trait is not object safe.

Implementors§