feat: user renaming

This commit is contained in:
timokoesters
2020-04-26 22:39:15 +02:00
parent 720cc0cffc
commit 4cc0a07092
5 changed files with 98 additions and 42 deletions

View File

@@ -164,3 +164,11 @@ where
}
}
}
impl<T, E> Deref for MatrixResult<T, E> {
type Target = Result<T, E>;
fn deref(&self) -> &Self::Target {
&self.0
}
}