pub trait IIntegratedSubsystemMethods: IIntegratedSubsystem {
// Provided methods
fn set_handle(self, subsystem: impl Into<IntegratedSubsystem>) { ... }
fn get_running(self) -> bool { ... }
fn get_valid(self) -> bool { ... }
fn is_running(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_handle(self, subsystem: impl Into<IntegratedSubsystem>)
fn set_handle(self, subsystem: impl Into<IntegratedSubsystem>)
SetHandle(crate::unity_engine::integratedsubsystem::IntegratedSubsystem) overload
Sourcefn get_running(self) -> bool
fn get_running(self) -> bool
get_running() overload
Sourcefn is_running(self) -> bool
fn is_running(self) -> bool
IsRunning() 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: IIntegratedSubsystem> IIntegratedSubsystemMethods for __T
Available on crate feature
unity_engine-integratedsubsystem only.