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 functions that probably need this the most are the write_to_xxx methods. These return an Option<()>, and so it'd be easy to call write_to_xxx, ignore this return value, and assume that the write had unconditionally succeeded (or assume that, as is often the case in Rust APIs, the method will panic on failure.
We should also use #[must_use] in transmute!, transmute_ref!, and transmute_mut!, as they are side effect-free.