pub trait TypedRecordKey: Send + Sync + 'static + Clone {
    type Value: Send + Sync + 'static + Clone;
}
Expand description

A trait for keys in TypedRecord.

Required Associated Types§

source

type Value: Send + Sync + 'static + Clone

Associated value type.

Object Safety§

This trait is not object safe.

Implementors§