Remove Problematic Unwraps In Macros#1055
Merged
Lorak-mmk merged 7 commits intoscylladb:mainfrom Cymatic-Systems:remove-unecessary-unwrapsAug 20, 2024
+3-6
Commits
Commits on Aug 12, 2024
Exchange Unwrap For Error Return In FromRow Macro as this unwrap can be caught by https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_used for end users
committedExchange Unwrap for unwrap_or(None) in FromUserType macro because it can appear as a warning if the end users has this lint enabled https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap…
committedUpdate From Row To No Longer Use Unwrap As It Can Cause Warnings/Errors If The User Has A Clippy Lint Active https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_used
committedModify FromUserType To No Longer Unwrap As It Will Appear As A Warning/Error When A Clippy Lint Is Active: https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_used
committed- committed