pub trait IRingInfoControllerMethods: IRingInfoController {
// Provided methods
fn get_help_text(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString { ... }
fn get_ring_name_text(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString { ... }
fn set_status(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn set_ring_image_texture(self, value: impl Into<RenderTexture>) { ... }
fn open(self) { ... }
fn close(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_help_text(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString
fn get_help_text( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, ) -> Il2CppString
GetHelpText(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn get_ring_name_text(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString
fn get_ring_name_text( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, ) -> Il2CppString
GetRingNameText(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn set_status(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
)
fn set_status( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )
SetStatus(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn set_ring_image_texture(self, value: impl Into<RenderTexture>)
fn set_ring_image_texture(self, value: impl Into<RenderTexture>)
set_RingImageTexture(crate::unity_engine::rendertexture::RenderTexture) 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: IRingInfoController> IRingInfoControllerMethods for __T
Available on crate feature
app-ringinfocontroller only.