Browse Source

Remove unnecesary condition and explain the ``type Residual``

pull/74/head
TechiePi 2 years ago
parent
commit
0d31a1970a
  1. 8
      ctru-rs/src/error.rs

8
ctru-rs/src/error.rs

@ -13,6 +13,8 @@ pub(crate) struct LibCtruResult(pub i32);
impl Try for LibCtruResult { impl Try for LibCtruResult {
type Output = (); type Output = ();
// This type is passed to [FromResidual::from_residual] when the LibCtruResult is an error,
// so this type implies "this is a result than CAN'T be `Ok`" (Infallible is the same as !)
type Residual = crate::Result<core::convert::Infallible>; type Residual = crate::Result<core::convert::Infallible>;
fn from_output(_: Self::Output) -> Self { fn from_output(_: Self::Output) -> Self {
@ -30,14 +32,10 @@ impl Try for LibCtruResult {
impl FromResidual for LibCtruResult { impl FromResidual for LibCtruResult {
fn from_residual(e: <Self as Try>::Residual) -> Self { fn from_residual(e: <Self as Try>::Residual) -> Self {
if let Some(e) = e.err() { match e.err().unwrap() {
match e {
Error::Os(result) => Self(result), Error::Os(result) => Self(result),
_ => Self(-1), _ => Self(-1),
} }
} else {
Self(-1)
}
} }
} }

Loading…
Cancel
Save