Skip to main content

IHubPlayCamera_DemoTelopMethods

Trait IHubPlayCamera_DemoTelopMethods 

Source
pub trait IHubPlayCamera_DemoTelopMethods: IHubPlayCamera_DemoTelop {
    // Provided methods
    fn get_data(self) -> HubDemoData { ... }
    fn get_ui_handle(self) -> ResourceHandle_2 { ... }
    fn set_ui_handle(self, value: impl Into<ResourceHandle_2>) { ... }
    fn ctor(self, data: impl Into<HubDemoData>) { ... }
    fn is_loading(self) -> bool { ... }
    fn is_closing(self) -> bool { ... }
    fn build(self) { ... }
    fn open(self) { ... }
    fn tick(self) { ... }
    fn close(self) { ... }
    fn exit(self) { ... }
    fn create_default_desc(self) -> Array<ProcDesc> { ... }
}

Provided Methods§

Source

fn get_data(self) -> HubDemoData

get_Data() overload

Source

fn get_ui_handle(self) -> ResourceHandle_2

get_UIHandle() overload

Source

fn set_ui_handle(self, value: impl Into<ResourceHandle_2>)

set_UIHandle(crate::app::resourcehandle_2::ResourceHandle_2) overload

Source

fn ctor(self, data: impl Into<HubDemoData>)

.ctor(crate::app::hubdemodata::HubDemoData) overload

Source

fn is_loading(self) -> bool

IsLoading() overload

Source

fn is_closing(self) -> bool

IsClosing() overload

Source

fn build(self)

Build() overload

Source

fn open(self)

Open() overload

Source

fn tick(self)

Tick() overload

Source

fn close(self)

Close() overload

Source

fn exit(self)

Exit() overload

Source

fn create_default_desc(self) -> Array<ProcDesc>

CreateDefaultDesc() 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: IHubPlayCamera_DemoTelop> IHubPlayCamera_DemoTelopMethods for __T

Available on crate feature app-hubplaycamera only.