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§

source

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,

Implementors§

source§

impl<W: Widget> ItemTooltipable for W