summaryrefslogtreecommitdiff
path: root/iced_builder/src/lib.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.me>2024-11-06 14:22:41 +0100
committerpml68 <contact@pml68.me>2024-11-06 16:26:36 +0100
commit65d3c249c9da370e26521a5ff409b6e6fdad4779 (patch)
treeac8f2a1d05e481da6d3f82cce6081b853a71269c /iced_builder/src/lib.rs
parentfix: error when dropping new element on element list (diff)
downloadiced-builder-65d3c249c9da370e26521a5ff409b6e6fdad4779.tar.gz
feat: animated theme switching with `iced_anim` crate
c c
Diffstat (limited to 'iced_builder/src/lib.rs')
-rw-r--r--iced_builder/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/iced_builder/src/lib.rs b/iced_builder/src/lib.rs
index 6af030f..a98a379 100644
--- a/iced_builder/src/lib.rs
+++ b/iced_builder/src/lib.rs
@@ -3,4 +3,5 @@ pub mod error;
pub mod types;
pub mod views;
-pub type Result<T> = std::result::Result<T, error::Error>;
+pub use error::Error;
+pub type Result<T> = core::result::Result<T, Error>;