1 2 3 4 5 6 7 8 9 10 11
use serde::Serialize; use crate::ast::span::Span; #[derive(Debug, Serialize)] pub struct Definition { pub(crate) path: String, pub(crate) selection_span: Span, pub(crate) target_span: Span, pub(crate) identifier_span: Span, }