summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-10 14:40:58 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-10 14:44:54 +0200
commit47f9554a82e65679c13ef17f3f3bf7fff5156184 (patch)
tree0b5a86af2116fced80f6f5cb20ba62fe5b89d7ba /src/lib.rs
parent8efe161e3d08b56cba8db1320b8433efa45fa79e (diff)
downloadiced-47f9554a82e65679c13ef17f3f3bf7fff5156184.tar.gz
iced-47f9554a82e65679c13ef17f3f3bf7fff5156184.tar.bz2
iced-47f9554a82e65679c13ef17f3f3bf7fff5156184.zip
Introduce `Task::abortable` :tada:
Diffstat (limited to '')
-rw-r--r--src/lib.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 09d9860e..79e2f276 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -202,9 +202,14 @@ pub use crate::core::{
Length, Padding, Pixels, Point, Radians, Rectangle, Rotation, Shadow, Size,
Theme, Transformation, Vector,
};
-pub use crate::runtime::{exit, Task};
+pub use crate::runtime::exit;
pub use iced_futures::Subscription;
+pub mod task {
+ //! Create runtime tasks.
+ pub use crate::runtime::task::{Handle, Task};
+}
+
pub mod clipboard {
//! Access the clipboard.
pub use crate::runtime::clipboard::{
@@ -309,6 +314,7 @@ pub use executor::Executor;
pub use font::Font;
pub use renderer::Renderer;
pub use settings::Settings;
+pub use task::Task;
#[doc(inline)]
pub use application::application;