pub trait Security:
Send
+ Sync
+ Debug
+ Copy
+ Clone
+ Sealed {
const MALICIOUS_SECURITY: bool;
}
Expand description
Used to abstract over SemiHonestMarker
or MaliciousMarker
Required Associated Constants§
const MALICIOUS_SECURITY: bool
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.