1 2 3 4 5 6 7 8 9 10
// This represents a highlighted symbol in a path. use crate::cursor::cursor::Cursor; use crate::fs::path::SPath; #[derive(Debug)] pub struct SymbolUsage { pub path: SPath, pub range: Cursor, }