use std::sync::Arc; use parking_lot::RwLock; use crate::tree::CommandNode; #[derive(Debug)] pub struct SuggestionContext { pub parent: Arc>>, pub start_pos: usize, }