pub trait TestBindingHelpers {
// Required methods
fn condition_satisfied(
cx: &mut JSContext,
global: Handle<'_, *mut JSObject>,
) -> bool;
fn condition_unsatisfied(
cx: &mut JSContext,
global: Handle<'_, *mut JSObject>,
) -> bool;
}Required Methods§
fn condition_satisfied( cx: &mut JSContext, global: Handle<'_, *mut JSObject>, ) -> bool
fn condition_unsatisfied( cx: &mut JSContext, global: Handle<'_, *mut JSObject>, ) -> 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.