diff options
author | 2025-02-11 00:55:59 +0100 | |
---|---|---|
committer | 2025-02-11 00:55:59 +0100 | |
commit | 54ffbbf043e5f064f554d82a22d71699a1c75f0c (patch) | |
tree | 346f4c4c2fa9a45fa0968667cc138c28dba117a8 | |
parent | 0ff5f9e8a7bc8d56d6ca8335a954550560a4eaf5 (diff) | |
download | iced-54ffbbf043e5f064f554d82a22d71699a1c75f0c.tar.gz iced-54ffbbf043e5f064f554d82a22d71699a1c75f0c.tar.bz2 iced-54ffbbf043e5f064f554d82a22d71699a1c75f0c.zip |
Export `sipper` types in `task` module
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -519,7 +519,9 @@ pub use Length::{Fill, FillPortion, Shrink}; pub mod task { //! Create runtime tasks. - pub use crate::runtime::task::{Handle, Task}; + pub use crate::runtime::task::{ + sipper, stream, Handle, Never, Sipper, Straw, Task, + }; } pub mod clipboard { |