2024-12-19 09:57:24 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> tests/sources/wrong_start.rs:1:1
|
2024-01-05 06:48:51 +00:00
|
|
|
|
|
2024-12-19 09:57:24 +00:00
|
|
|
1 | / micronfig::config! {
|
|
|
|
2 | | GARASAUTO: i64,
|
|
|
|
3 | | }
|
|
|
|
| | ^
|
|
|
|
| | |
|
|
|
|
| |_expected `Option<i64>`, found `Option<String>`
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
|
= note: expected enum `Option<i64>`
|
|
|
|
found enum `Option<String>`
|
|
|
|
= note: this error originates in the macro `micronfig::config` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2024-01-05 06:48:51 +00:00
|
|
|
|
2024-12-19 09:57:24 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> tests/sources/wrong_start.rs:1:1
|
|
|
|
|
|
|
|
|
1 | / micronfig::config! {
|
|
|
|
2 | | GARASAUTO: i64,
|
|
|
|
3 | | }
|
|
|
|
| | ^- help: try using a conversion method: `.to_string()`
|
|
|
|
| | |
|
|
|
|
| |_expected `String`, found `i64`
|
|
|
|
| expected due to this
|
2024-01-05 06:48:51 +00:00
|
|
|
|
|
2024-12-19 09:57:24 +00:00
|
|
|
= note: this error originates in the macro `micronfig::config` (in Nightly builds, run with -Z macro-backtrace for more info)
|