gmt_dos_clients_scope_client/
lib.rs

1/*!
2# Scope client (`default` feature)
3
4The scopes defined in the client module receive data from the scope servers
5and show a live display of the data.
6
7See also [gmt_dos_clients_scope].
8
9## Example
10
11```ignore
12use gmt_dos_clients_scope::client;
13
14#[derive(gmt_dos_clients::interface::UID)]
15#[uid(port = 5001)]
16pub enum Signal {}
17
18
19gmt_dos_clients_scope::client::Scope::new()
20    .signal::<Signal>().unwrap()
21    .show();
22```
23
24*/
25
26pub use gmt_dos_clients_scope::{
27    client::{ClientError, GmtShot, GridScope, Scope, Shot, XScope},
28    GmtScope, ImageScope, ImageScopeKind, PlotScope, ScopeKind,
29};