Skip to main content

IIntegratedSubsystemMethods

Trait IIntegratedSubsystemMethods 

Source
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§

Source

fn set_handle(self, subsystem: impl Into<IntegratedSubsystem>)

SetHandle(crate::unity_engine::integratedsubsystem::IntegratedSubsystem) overload

Source

fn get_running(self) -> bool

get_running() overload

Source

fn get_valid(self) -> bool

get_valid() overload

Source

fn is_running(self) -> bool

IsRunning() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IIntegratedSubsystem> IIntegratedSubsystemMethods for __T

Available on crate feature unity_engine-integratedsubsystem only.