//! Hovered entry configuration for Toc widget.
usecrate::widgets::markdown_widget::extensions::toc::Toc;impl<'a>Toc<'a>{/// Set the hovered item index.
////// # Arguments
////// * `index` - The index of the hovered heading, or None.
////// # Returns
////// Self for method chaining.
pubfnhovered(self, _index:Option<usize>)->Self{// Now managed by TocState, this is a no-op for compatibility
self}}