pub trait IDragonRideTargetManagerMethods: IDragonRideTargetManager {
// Provided methods
fn ctor(self) { ... }
fn destruct(self) { ... }
fn tick(self) { ... }
fn get_max_count(self) -> i32 { ... }
fn rental_target(self) -> GameObject { ... }
fn rental_popup(self) -> GameObject { ... }
fn check_reserve_list_condition(self) { ... }
fn return_reserve_target(self, target: impl Into<GameObject>) { ... }
fn return_reserve_popup(self, target: impl Into<GameObject>) { ... }
fn hide_all_target(self) { ... }
}Provided Methods§
Sourcefn get_max_count(self) -> i32
fn get_max_count(self) -> i32
GetMaxCount() overload
Sourcefn rental_target(self) -> GameObject
fn rental_target(self) -> GameObject
RentalTarget() overload
Sourcefn rental_popup(self) -> GameObject
fn rental_popup(self) -> GameObject
RentalPopup() overload
Sourcefn check_reserve_list_condition(self)
fn check_reserve_list_condition(self)
CheckReserveListCondition() overload
Sourcefn return_reserve_target(self, target: impl Into<GameObject>)
fn return_reserve_target(self, target: impl Into<GameObject>)
ReturnReserveTarget(crate::unity_engine::gameobject::GameObject) overload
Sourcefn return_reserve_popup(self, target: impl Into<GameObject>)
fn return_reserve_popup(self, target: impl Into<GameObject>)
ReturnReservePopup(crate::unity_engine::gameobject::GameObject) overload
Sourcefn hide_all_target(self)
fn hide_all_target(self)
HideAllTarget() 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: IDragonRideTargetManager> IDragonRideTargetManagerMethods for __T
Available on crate feature
app-dragonridetargetmanager only.