pub trait IJobIntroInfoSetter_WeaponSetterMethods: IJobIntroInfoSetter_WeaponSetter {
// Provided methods
fn set(
self,
kinds: impl Into<Array<ItemData_Kinds>>,
level: impl Into<WeaponLevel_Kind>,
job_data: impl Into<JobData>,
count: impl Into<i32>,
) { ... }
fn reset(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set(
self,
kinds: impl Into<Array<ItemData_Kinds>>,
level: impl Into<WeaponLevel_Kind>,
job_data: impl Into<JobData>,
count: impl Into<i32>,
)
fn set( self, kinds: impl Into<Array<ItemData_Kinds>>, level: impl Into<WeaponLevel_Kind>, job_data: impl Into<JobData>, count: impl Into<i32>, )
Set(::unity::Array<crate::app::itemdata::ItemData_Kinds>, crate::app::weaponlevel::WeaponLevel_Kind, crate::app::jobdata::JobData, i32) 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: IJobIntroInfoSetter_WeaponSetter> IJobIntroInfoSetter_WeaponSetterMethods for __T
Available on crate feature
app-jobintroinfosetter only.