pub trait IDragonRideTargetPopupMethods: IDragonRideTargetPopup {
// Provided methods
fn get_is_alive(self) -> bool { ... }
fn update(self) { ... }
fn init(
self,
pos: impl Into<Vector3>,
) -> (DragonRideCamera, DragonRideConfig) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_alive(self) -> bool
fn get_is_alive(self) -> bool
get_IsAlive() overload
Sourcefn init(self, pos: impl Into<Vector3>) -> (DragonRideCamera, DragonRideConfig)
fn init(self, pos: impl Into<Vector3>) -> (DragonRideCamera, DragonRideConfig)
Init(crate::unity_engine::vector3::Vector3, *mutcrate::app::dragonridecamera::DragonRideCamera, *mutcrate::app::dragonrideconfig::DragonRideConfig) 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: IDragonRideTargetPopup> IDragonRideTargetPopupMethods for __T
Available on crate feature
app-dragonridetargetpopup only.