Compile Errors
error[E0433]: cannot find `__private228` in `_serde`
--> server/api/src/routes/webui_db_types.rs:167:21
|
167 | #[derive(Serialize, Deserialize, Clone, Debug)]
| ^^^^^^^^^^^ could not find `__private228` in `_serde`
|
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider importing one of these items
|
1 + use std::fmt::Formatter;
|
1 + use serde_json::ser::Formatter;
|
1 + use tracing_subscriber::fmt::Formatter;
|
error[E0433]: cannot find `__private228` in `_serde`
--> server/api/src/routes/webui_db_types.rs:167:21
|
167 | #[derive(Serialize, Deserialize, Clone, Debug)]
| ^^^^^^^^^^^ could not find `__private228` in `_serde`
|
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider importing this enum
|
1 + use std::option::Option;
|
error[E0433]: cannot find `__private228` in `_serde`
--> server/api/src/routes/webui_db_types.rs:179:21
|
179 | #[derive(Serialize, Deserialize, Clone, Debug)]
| ^^^^^^^^^^^ could not find `__private228` in `_serde`
|
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider importing this module
|
1 + use std::fmt;
|
Enviroments
╰─λ rustc --version --verbose
rustc 1.99.0-nightly (9f36de775 2026-07-19)
binary: rustc
commit-hash: 9f36de775bc636c8e88c31a173c2bcb6995956a0
commit-date: 2026-07-19
host: x86_64-unknown-linux-gnu
release: 1.99.0-nightly
LLVM version: 22.1.8
╰─λ cargo --version
cargo 1.99.0-nightly (3efb1f477 2026-07-17)
Compile Errors
Enviroments