re_redap_browser 0.33.1

The UI and communication to implement the in-viewer redap server browser.
Documentation
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>,
}