Trait r3::kernel::raw::Id

source ·
pub trait Id: Debug + Copy + Eq + Ord + Hash + Send + Sync + 'static { }
Expand description

A group of traits that must be implemented by kernel object ID types, including KernelBase::RawTaskId.

Implementors§

source§

impl<T> Id for Twhere T: Debug + Copy + Eq + Ord + Hash + Send + Sync + 'static + ?Sized,