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§
Sourcefn get_data(self) -> HubDemoData
fn get_data(self) -> HubDemoData
get_Data() overload
Sourcefn get_ui_handle(self) -> ResourceHandle_2
fn get_ui_handle(self) -> ResourceHandle_2
get_UIHandle() overload
Sourcefn set_ui_handle(self, value: impl Into<ResourceHandle_2>)
fn set_ui_handle(self, value: impl Into<ResourceHandle_2>)
set_UIHandle(crate::app::resourcehandle_2::ResourceHandle_2) overload
Sourcefn ctor(self, data: impl Into<HubDemoData>)
fn ctor(self, data: impl Into<HubDemoData>)
.ctor(crate::app::hubdemodata::HubDemoData) overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() overload
Sourcefn create_default_desc(self) -> Array<ProcDesc>
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§
impl<__T: IHubPlayCamera_DemoTelop> IHubPlayCamera_DemoTelopMethods for __T
Available on crate feature
app-hubplaycamera only.