pub trait ExecSpecMapGet<'a>: Sized + DeepView {
type Key: DeepView + DeepViewClone;
type Value: DeepView + DeepViewClone;
// Required method
exec fn exec_get(self, k: Self::Key) -> Option<Self::Value>;
}Expand description
Spec for executable version of Map::get.
Required Associated Types§
type Key: DeepView + DeepViewClone
type Value: DeepView + DeepViewClone
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.