1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//! # EVE ESI User Interface Scopes
//!
//! This module provides a type-safe way to add user interface-related scopes for OAuth2 to the [`super::ScopeBuilder`]
//!
//! See [module-level documentation](super) for an overview & usage of scopes for the esi_crate
//!
//! ## Methods
//! | Method | Description |
//! | ------------------------------------------------ | -------------------------------------------------------------- |
//! | [`UiScopes::new`] | Creates a new instance of [`UiScopes`] |
//! | [`UiScopes::all`] | Creates a new instance of [`UiScopes`] with all scopes applied |
//! | [`UiScopes::open_window`] | Access to open UI windows for character |
//! | [`UiScopes::write_waypoint`] | Write access to set autopilot waypoint for character |
/// Access to open UI windows for character
pub const OPEN_WINDOW: &str = "esi-ui.open_window.v1";
/// Write access to set autopilot waypoint for character
pub const WRITE_WAYPOINT: &str = "esi-ui.write_waypoint.v1";
/// Struct with methods for listing user interface scopes to request for OAuth2