diff options
author | 2025-02-21 01:22:56 +0100 | |
---|---|---|
committer | 2025-02-21 01:37:13 +0100 | |
commit | 9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd (patch) | |
tree | dd8a9407058915c152ce6544ba20b75240ca85be /src/lib.rs | |
parent | 28caeccf22d163e9014b5ed26334b6085683a28b (diff) | |
download | iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.gz iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.bz2 iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.zip |
Run `cargo fmt`
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -505,22 +505,22 @@ pub use crate::core::gradient; pub use crate::core::padding; pub use crate::core::theme; pub use crate::core::{ - never, Alignment, Animation, Background, Border, Color, ContentFit, - Degrees, Function, Gradient, Length, Padding, Pixels, Point, Radians, - Rectangle, Rotation, Settings, Shadow, Size, Theme, Transformation, Vector, + Alignment, Animation, Background, Border, Color, ContentFit, Degrees, + Function, Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, + Rotation, Settings, Shadow, Size, Theme, Transformation, Vector, never, }; pub use crate::runtime::exit; pub use iced_futures::Subscription; -pub use alignment::Horizontal::{Left, Right}; -pub use alignment::Vertical::{Bottom, Top}; pub use Alignment::Center; pub use Length::{Fill, FillPortion, Shrink}; +pub use alignment::Horizontal::{Left, Right}; +pub use alignment::Vertical::{Bottom, Top}; pub mod task { //! Create runtime tasks. pub use crate::runtime::task::{ - sipper, stream, Handle, Never, Sipper, Straw, Task, + Handle, Never, Sipper, Straw, Task, sipper, stream, }; } @@ -683,7 +683,7 @@ pub fn run<State, Message, Theme, Renderer>( title: impl application::Title<State> + 'static, update: impl application::Update<State, Message> + 'static, view: impl for<'a> application::View<'a, State, Message, Theme, Renderer> - + 'static, + + 'static, ) -> Result where State: Default + 'static, |