Mountain/Command/Hover/Interface/Range.rs
1
2//! Inclusive document range bounded by a start and end
3//! `Position::Struct`. Half-open at the end per LSP convention.
4
5use serde::{Deserialize, Serialize};
6
7use crate::Command::Hover::Interface::Position;
8
9#[derive(Debug, Clone, Serialize, Deserialize)]
10pub struct Struct {
11 pub start:Position::Struct,
12
13 pub end:Position::Struct,
14}