pub trait ISandBoxMethods: ISandBox {
// Provided methods
fn start(self) { ... }
fn try_create_property(self) { ... }
fn update(self) { ... }
fn update_color(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn try_create_property(self)
fn try_create_property(self)
TryCreateProperty() overload
Sourcefn update_color(self)
fn update_color(self)
UpdateColor() overload
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.
Implementors§
impl<__T: ISandBox> ISandBoxMethods for __T
Available on crate feature
root-sandbox only.