pub trait IItemListDialogItemContentMethods: IItemListDialogItemContent {
// Provided methods
fn start(self) { ... }
fn build(
self,
sprite: impl Into<Sprite>,
name: impl Into<Il2CppString>,
num: impl Into<i32>,
enabled_num: impl Into<bool>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn build(
self,
sprite: impl Into<Sprite>,
name: impl Into<Il2CppString>,
num: impl Into<i32>,
enabled_num: impl Into<bool>,
)
fn build( self, sprite: impl Into<Sprite>, name: impl Into<Il2CppString>, num: impl Into<i32>, enabled_num: impl Into<bool>, )
Build(crate::unity_engine::sprite::Sprite, ::unity::Il2CppString, i32, bool) 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: IItemListDialogItemContent> IItemListDialogItemContentMethods for __T
Available on crate feature
app-itemlistdialogitemcontent only.