Update gtk-rs crates

This commit is contained in:
Elias Projahn 2021-05-07 23:49:05 +02:00
parent df6e2e86c7
commit 7d7343ea8c
63 changed files with 3499 additions and 908 deletions

View file

@ -39,10 +39,7 @@ impl Error {
/// Create a new unexpected error without an explicit source.
pub(super) fn u(msg: String) -> Self {
Self::Unexpected {
msg,
source: None,
}
Self::Unexpected { msg, source: None }
}
/// Create a new unexpected error with an explicit source.
@ -85,4 +82,3 @@ impl From<std::io::Error> for Error {
}
pub type Result<T> = std::result::Result<T, Error>;