pub trait CapType:
Copy
+ Clone
+ Eq
+ PartialEq
+ Ord
+ PartialOrd
+ Hash {
const NAME: &'static str;
}
Expand description
Trait for marker types corresponding to capability types in the seL4 API.
Implementors are used to mark instantiations of Cap
.
Required Associated Constants§
Object Safety§
This trait is not object safe.