• 1 Post
  • 3 Comments
Joined 9か月前
cake
Cake day: 2024年2月26日

help-circle

  • Thank you very much. I’ll change it. I did run cargo clippy, but it didn’t complained anything anymore before I published the code. 🙂

    One question to return value Option<&String>:

    is it better to change to Option<&str> or &Option<String> if the value in the struct is a Option<String>? The latter sounds more logical to me.