pub trait ItemTooltipable {
// Required method
fn with_item_tooltip<'a, I>(
self,
tooltip_manager: &'a mut ItemTooltipManager,
items: I,
prices: &'a Option<SitePrices>,
tooltip: &'a ItemTooltip<'a>,
) -> ItemTooltipped<'a, Self, I>
where Self: Sized;
}Required Methods§
fn with_item_tooltip<'a, I>(
self,
tooltip_manager: &'a mut ItemTooltipManager,
items: I,
prices: &'a Option<SitePrices>,
tooltip: &'a ItemTooltip<'a>,
) -> ItemTooltipped<'a, Self, I>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".