Inline documentation for application and daemon functions

This commit is contained in:
Héctor Ramón Jiménez 2024-06-20 18:50:03 +02:00
parent a26493ed2b
commit cbeda38f0d
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -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`.