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