Skip to main content

Mountain/Command/Hover/Interface/
Range.rs

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