1 2 3 4 5 6 7 8 9 10
//! Constructor for SelectionState. use crate::widgets::markdown_widget::state::selection_state::SelectionState; impl SelectionState { /// Create a new inactive selection state. pub fn new() -> Self { Self::default() } }