summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-20 18:50:03 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-20 18:50:03 +0200
commitcbeda38f0d49f184ff26b7f77a4246b33ea3bd90 (patch)
tree1b5346c3d4b5fa215f5bdbe04ea0444883d97b27 /src/lib.rs
parenta26493ed2b3a7679c9de751ddb6d2e45e9343fa0 (diff)
downloadiced-cbeda38f0d49f184ff26b7f77a4246b33ea3bd90.tar.gz
iced-cbeda38f0d49f184ff26b7f77a4246b33ea3bd90.tar.bz2
iced-cbeda38f0d49f184ff26b7f77a4246b33ea3bd90.zip
Inline documentation for `application` and `daemon` functions
Diffstat (limited to '')
-rw-r--r--src/lib.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 957c7ecc..bc3fe6ab 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -306,8 +306,8 @@ pub mod widget {
mod runtime {}
}
-pub use application::{application, Application};
-pub use daemon::{daemon, Daemon};
+pub use application::Application;
+pub use daemon::Daemon;
pub use error::Error;
pub use event::Event;
pub use executor::Executor;
@@ -316,6 +316,11 @@ pub use renderer::Renderer;
pub use settings::Settings;
pub use subscription::Subscription;
+#[doc(inline)]
+pub use application::application;
+#[doc(inline)]
+pub use daemon::daemon;
+
/// A generic widget.
///
/// This is an alias of an `iced_native` element with a default `Renderer`.