Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Compiling qs v0.1.0 (/home/vramch/.config/quickshell/quick-settings)
- warning: fields `current_idx`, `current_name`, and `total_count` are never read
- --> src/state/mod.rs:21:9
- |
- 20 | pub struct WorkspaceState {
- | -------------- fields in this struct
- 21 | pub current_idx: usize,
- | ^^^^^^^^^^^
- 22 | pub current_name: Option<String>,
- | ^^^^^^^^^^^^
- 23 | pub total_count: usize,
- | ^^^^^^^^^^^
- |
- = note: `WorkspaceState` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
- = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
- warning: fields `app_name` and `title` are never read
- --> src/state/mod.rs:30:9
- |
- 29 | pub struct WindowState {
- | ----------- fields in this struct
- 30 | pub app_name: Option<String>,
- | ^^^^^^^^
- 31 | pub title: Option<String>,
- | ^^^^^
- |
- = note: `WindowState` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
- warning: methods `workspace_text` and `window_title` are never used
- --> src/state/mod.rs:40:12
- |
- 34 | impl AppState {
- | ------------- methods in this implementation
- ...
- 40 | pub fn workspace_text(&self) -> String {
- | ^^^^^^^^^^^^^^
- ...
- 54 | pub fn window_title(&self) -> String {
- | ^^^^^^^^^^^^
- warning: struct `TopBar` is never constructed
- --> src/ui/bar.rs:14:12
- |
- 14 | pub struct TopBar {
- | ^^^^^^
- warning: associated items `new`, `show`, `start_clock_updates`, `start_state_updates`, and `start_status_updates` are never used
- --> src/ui/bar.rs:28:12
- |
- 27 | impl TopBar {
- | ----------- associated items in this implementation
- 28 | pub fn new(app: &Application, state: Arc<RwLock<AppState>>) -> Self {
- | ^^^
- ...
- 210 | pub fn show(&self) {
- | ^^^^
- ...
- 215 | fn start_clock_updates(&self) {
- | ^^^^^^^^^^^^^^^^^^^
- ...
- 226 | fn start_state_updates(&self, state: Arc<RwLock<AppState>>) {
- | ^^^^^^^^^^^^^^^^^^^
- ...
- 246 | fn start_status_updates(&self) {
- | ^^^^^^^^^^^^^^^^^^^^
- warning: function `current_time_string` is never used
- --> src/ui/widgets.rs:4:8
- |
- 4 | pub fn current_time_string() -> String {
- | ^^^^^^^^^^^^^^^^^^^
- warning: `qs` (bin "qs") generated 6 warnings
- Finished `release` profile [optimized] target(s) in 1m 09s
- Error while using
- thread 'main' (64080) panicked at /home/vramch/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.49.0/src/process/unix/mod.rs:373:5:
- there is no reactor running, must be called from the context of a Tokio 1.x runtime
Advertisement
Add Comment
Please, Sign In to add comment