Trait timely::container::flatcontainer::Index

source ·
pub trait Index: Copy + Serialize + for<'a> Deserialize<'a> { }
Expand description

An index into a region. Automatically implemented for relevant types.

We require an index to be Copy and to support serde.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Index for T
where T: Copy + Serialize + for<'a> Deserialize<'a>,