pub unsafe trait CreatePortTableCapability { }Expand description
The CreatePortTableCapability capability allows the holder to instantiate
a new copy of the UdpPortTable struct.
There should only ever be one instance of this struct, so this capability should not be distributed to capsules at all, as the port table should only be instantiated once by the kernel.
§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".