1 2 3 4 5 6 7
use crate::servers::Command; /// Context structure for the redap browser. pub struct Context<'a> { /// Sender to queue new commands. pub command_sender: &'a crossbeam::channel::Sender<Command>, }