pub trait CoreOptions {
// Provided method
fn set_core_options(&self, _ctx: &SetEnvironmentContext<'_>) -> bool { ... }
}Expand description
This trait defines the set_core_options function.
Provided Methods§
Sourcefn set_core_options(&self, _ctx: &SetEnvironmentContext<'_>) -> bool
fn set_core_options(&self, _ctx: &SetEnvironmentContext<'_>) -> bool
Used to tell the frontend any options / settings your core supports. This can be done by using either of the following functions:
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".