//! Event returned when a line is double-clicked in the markdown widget.
/// Event returned when a line is double-clicked in the markdown widget.
#[derive(Debug, Clone)]pubstructMarkdownDoubleClickEvent{/// The logical line number (0-indexed) in the document.
publine_number:usize,
/// The kind of line that was clicked.
publine_kind: String,
/// Plain text content of the line.
pubcontent: String,
}