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
The use of .unwrap() in the core logic means that the app will crash on unexpected inputs.
Replace it with .ok_or(E)? or similar to return function errors.
This helps with writing tests and showing proper error messages in the CLI.
The text was updated successfully, but these errors were encountered:
The use of
.unwrap()
in the core logic means that the app will crash on unexpected inputs.Replace it with
.ok_or(E)?
or similar to return function errors.This helps with writing tests and showing proper error messages in the CLI.
The text was updated successfully, but these errors were encountered: