pub trait IRingInfo_RingPrefabObjectMethods: IRingInfo_RingPrefabObject {
// Provided methods
fn get_m_is_visible_dirty(self) -> bool { ... }
fn set_m_is_visible_dirty(self, value: impl Into<bool>) { ... }
fn get_is_delete(self) -> bool { ... }
fn set_is_delete(self, value: impl Into<bool>) { ... }
fn ctor(
self,
prefab_path: impl Into<Il2CppString>,
ring_info_window: impl Into<RingInfo_RingInfoWindowRingModel>,
god: impl Into<GodUnit>,
ring: impl Into<RingData>,
is_visible_dirty: impl Into<bool>,
) { ... }
fn delete(self) { ... }
fn update_dirty(self) { ... }
fn create_impl(self) { ... }
}Provided Methods§
Sourcefn get_m_is_visible_dirty(self) -> bool
fn get_m_is_visible_dirty(self) -> bool
get_m_IsVisibleDirty() overload
Sourcefn set_m_is_visible_dirty(self, value: impl Into<bool>)
fn set_m_is_visible_dirty(self, value: impl Into<bool>)
set_m_IsVisibleDirty(bool) overload
Sourcefn get_is_delete(self) -> bool
fn get_is_delete(self) -> bool
get_IsDelete() overload
Sourcefn set_is_delete(self, value: impl Into<bool>)
fn set_is_delete(self, value: impl Into<bool>)
set_IsDelete(bool) overload
Sourcefn ctor(
self,
prefab_path: impl Into<Il2CppString>,
ring_info_window: impl Into<RingInfo_RingInfoWindowRingModel>,
god: impl Into<GodUnit>,
ring: impl Into<RingData>,
is_visible_dirty: impl Into<bool>,
)
fn ctor( self, prefab_path: impl Into<Il2CppString>, ring_info_window: impl Into<RingInfo_RingInfoWindowRingModel>, god: impl Into<GodUnit>, ring: impl Into<RingData>, is_visible_dirty: impl Into<bool>, )
.ctor(::unity::Il2CppString, crate::app::ringinfo::RingInfo_RingInfoWindowRingModel, crate::app::godunit::GodUnit, crate::app::ringdata::RingData, bool) overload
Sourcefn update_dirty(self)
fn update_dirty(self)
UpdateDirty() overload
Sourcefn create_impl(self)
fn create_impl(self)
CreateImpl() 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: IRingInfo_RingPrefabObject> IRingInfo_RingPrefabObjectMethods for __T
Available on crate feature
app-ringinfo only.