pub trait ICharacterAssetMethods: ICharacterAsset {
// Provided methods
fn ctor(self, asset_type: impl Into<AssetType>) { ... }
fn ctor_2(self, rhs: impl Into<CharacterAsset>) { ... }
fn change_nml(self, mode: impl Into<u16>) { ... }
}Provided Methods§
Sourcefn ctor(self, asset_type: impl Into<AssetType>)
fn ctor(self, asset_type: impl Into<AssetType>)
.ctor(crate::combat::assettype::AssetType) overload
Sourcefn ctor_2(self, rhs: impl Into<CharacterAsset>)
fn ctor_2(self, rhs: impl Into<CharacterAsset>)
.ctor(crate::combat::characterasset::CharacterAsset) overload
Sourcefn change_nml(self, mode: impl Into<u16>)
fn change_nml(self, mode: impl Into<u16>)
ChangeNML(u16) 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: ICharacterAsset> ICharacterAssetMethods for __T
Available on crate feature
combat-characterasset only.