trait ItemTemplate<'a, 'cx: 'a>: Template + Display {
    // Required method
    fn item_and_mut_cx(&self) -> (&'a Item, RefMut<'_, &'a mut Context<'cx>>);
}

Required Methods§

source

fn item_and_mut_cx(&self) -> (&'a Item, RefMut<'_, &'a mut Context<'cx>>)

Implementors§