azalea_brigadier/context/
suggestion_context.rs1use std::sync::Arc;
2
3use parking_lot::RwLock;
4
5use crate::tree::CommandNode;
6
7#[derive(Debug)]
8pub struct SuggestionContext<S> {
9 pub parent: Arc<RwLock<CommandNode<S>>>,
10 pub start_pos: usize,
11}