You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0308]: mismatched types
--> src/main.rs:4:17
|
4 | let _ = RGB{ r, g, b };
| ^ expected f64, found f32
help: you can cast an `f32` to `f64` in a lossless way
|
4 | let _ = RGB{ r.into(), g, b };
| ^^^^^^^^
Trying to apply the suggestion fails and causes a syntax error, the correct fix would be r: r.into().