pub trait IPublicObjectMethods: IPublicObject {
// Provided methods
fn for_each_impl<M0: IlType + Copy + ClassIdentity>(
self,
func: impl Into<PublicObject_Func_1<M0>>,
) { ... }
fn warm_up_impl(self) { ... }
fn try_create_dictionary(self) { ... }
fn get_asset_impl<M0: IlType + Copy + ClassIdentity>(
self,
name: impl Into<Il2CppString>,
) -> M0 { ... }
fn dump_impl(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
fn for_each_impl<M0: IlType + Copy + ClassIdentity>( self, func: impl Into<PublicObject_Func_1<M0>>, )
Sourcefn warm_up_impl(self)
fn warm_up_impl(self)
WarmUpImpl() overload
Sourcefn try_create_dictionary(self)
fn try_create_dictionary(self)
TryCreateDictionary() overload
fn get_asset_impl<M0: IlType + Copy + ClassIdentity>( self, name: impl Into<Il2CppString>, ) -> M0
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: IPublicObject> IPublicObjectMethods for __T
Available on crate feature
app-publicobject only.