feat: improve DX of events (#12)

* feat: improve DX of events

* Update global_shortcut.rs

* Update event.rs

* deploy docs to gh pages

* Delete rustdoc.yml

* add tests for global shortcut

* improve logs produced by tauri_log

* wip docs

* update docs

* move error to separate module

* feat: simplify functions returning array backed iterators

* rebase and cleanup

* fixes
This commit is contained in:
Jonas Kruckenberg 2022-11-19 20:33:06 +01:00 committed by GitHub
parent 300fe18d22
commit e28a0bb749
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 655 additions and 289 deletions

View file

@ -53,7 +53,7 @@ pub async fn pick_files() -> anyhow::Result<()> {
.await?;
ensure!(file.is_some());
ensure!(file.unwrap().len() > 1);
ensure!(file.unwrap().count() > 1);
Ok(())
}
@ -76,7 +76,7 @@ pub async fn pick_folders() -> anyhow::Result<()> {
.await?;
ensure!(file.is_some());
ensure!(file.unwrap().len() > 1);
ensure!(file.unwrap().count() > 1);
Ok(())
}