pub unsafe trait ExternalProcessCapability { }Expand description
A capability that allows the holder to use the core kernel
resources needed to implement the Process trait.
Many of these operations are very sensitive, that is they cannot just be made public. In particular, certain objects can be used outside of the core kernel, but the constructors must be restricted.
§Safety
Capabilities can only be created in trusted crates that can use unsafe.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".