pub trait IGUI_ScopeMethods: IGUI_Scope {
// Provided methods
fn dispose(self, disposing: impl Into<bool>) { ... }
fn finalize(self) { ... }
fn dispose_2(self) { ... }
fn close_scope(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn close_scope(self)
fn close_scope(self)
CloseScope() 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: IGUI_Scope> IGUI_ScopeMethods for __T
Available on crate feature
unity_engine-gui only.