MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / colors

Method colors

src/app/mod.rs:95–122  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

93#[derive(Clone, Copy, Debug, PartialEq, Eq)]
94enum MainSurface {
95 Document,
96 Debugger,
97}
98
99#[derive(Clone, Copy, Debug, PartialEq, Eq)]
100enum LaunchMode {
101 Run,
102 Debug,
103}
104#[derive(Clone, PartialEq)]
105struct BuildTarget {
106 manifest_path: VPath,
107 root_path: VPath,
108}
109
110struct ShellLayout {
111 tool_window_width: f32,
112 tool_window_drag_start: Option<f32>,
113}
114
115impl Default for ShellLayout {
116 fn default() -> Self {
117 Self {
118 tool_window_width: metrics::TOOL_WINDOW_DEFAULT,
119 tool_window_drag_start: None,
120 }
121 }
122}
123
124pub(super) struct StageCache {
125 path: String,

Callers 2

themeMethod · 0.80
settings_window_uiMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected