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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.