pub trait IReloadAttributeMethods: IReloadAttribute {
// Provided methods
fn ctor(
self,
paths: impl Into<Array<Il2CppString>>,
package: impl Into<ReloadAttribute_Package>,
) { ... }
fn ctor_2(
self,
path: impl Into<Il2CppString>,
package: impl Into<ReloadAttribute_Package>,
) { ... }
fn ctor_3(
self,
path_format: impl Into<Il2CppString>,
range_min: impl Into<i32>,
range_max: impl Into<i32>,
package: impl Into<ReloadAttribute_Package>,
) { ... }
}Provided Methods§
Sourcefn ctor(
self,
paths: impl Into<Array<Il2CppString>>,
package: impl Into<ReloadAttribute_Package>,
)
fn ctor( self, paths: impl Into<Array<Il2CppString>>, package: impl Into<ReloadAttribute_Package>, )
.ctor(::unity::Array<::unity::Il2CppString>, crate::unity_engine::rendering::reloadattribute::ReloadAttribute_Package) overload
Sourcefn ctor_2(
self,
path: impl Into<Il2CppString>,
package: impl Into<ReloadAttribute_Package>,
)
fn ctor_2( self, path: impl Into<Il2CppString>, package: impl Into<ReloadAttribute_Package>, )
.ctor(::unity::Il2CppString, crate::unity_engine::rendering::reloadattribute::ReloadAttribute_Package) overload
Sourcefn ctor_3(
self,
path_format: impl Into<Il2CppString>,
range_min: impl Into<i32>,
range_max: impl Into<i32>,
package: impl Into<ReloadAttribute_Package>,
)
fn ctor_3( self, path_format: impl Into<Il2CppString>, range_min: impl Into<i32>, range_max: impl Into<i32>, package: impl Into<ReloadAttribute_Package>, )
.ctor(::unity::Il2CppString, i32, i32, crate::unity_engine::rendering::reloadattribute::ReloadAttribute_Package) 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: IReloadAttribute> IReloadAttributeMethods for __T
Available on crate feature
unity_engine-rendering-reloadattribute only.