1
2
3
4
5
6
7
/// Value-object that contains additional information when
/// requesting references.
#[derive(Debug, Serialize)]
pub struct ReferenceContext {
    /// Include the declaration of the current symbol.
    pub include_declaration: bool,
}