diff options
| author | 2024-06-20 18:50:03 +0200 | |
|---|---|---|
| committer | 2024-06-20 18:50:03 +0200 | |
| commit | cbeda38f0d49f184ff26b7f77a4246b33ea3bd90 (patch) | |
| tree | 1b5346c3d4b5fa215f5bdbe04ea0444883d97b27 /src | |
| parent | a26493ed2b3a7679c9de751ddb6d2e45e9343fa0 (diff) | |
| download | iced-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.rs | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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`. |
