pub trait BodyHandle: Copy + Hash + PartialEq<Self> + Eq + 'static + Send + Sync { }
Expand description

Trait auto-implemented for types that can be used as a Body handle.

Body handles must be unique, i.e., they should not suffer from the ABA problem.

Implementors§

source§

impl<T> BodyHandle for Twhere T: Copy + Hash + PartialEq<T> + Eq + 'static + Send + Sync,