1//! Typed context value marker trait.
23/// Values that can be provided through `ContextProvider<T>` and consumed via
4/// `Context::use_context::<T>()`.
5pub trait ContextValue: Clone + PartialEq + 'static {}
67impl<T> ContextValue for T where T: Clone + PartialEq + 'static {}