pub trait IRefineShopExchangeResultPopupMethods: IRefineShopExchangeResultPopup {
// Provided methods
fn open(self) { ... }
fn set_data(
self,
target_material_data: impl Into<ItemRefineExchangeData>,
target_material_count: impl Into<i32>,
source_material_data: impl Into<ItemRefineExchangeData>,
source_material_count: impl Into<i32>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_data(
self,
target_material_data: impl Into<ItemRefineExchangeData>,
target_material_count: impl Into<i32>,
source_material_data: impl Into<ItemRefineExchangeData>,
source_material_count: impl Into<i32>,
)
fn set_data( self, target_material_data: impl Into<ItemRefineExchangeData>, target_material_count: impl Into<i32>, source_material_data: impl Into<ItemRefineExchangeData>, source_material_count: impl Into<i32>, )
SetData(crate::app::itemrefineexchangedata::ItemRefineExchangeData, i32, crate::app::itemrefineexchangedata::ItemRefineExchangeData, 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: IRefineShopExchangeResultPopup> IRefineShopExchangeResultPopupMethods for __T
Available on crate feature
app-refineshopexchangeresultpopup only.