Add Fn suffix to application and daemon traits
This commit is contained in:
parent
323b17d458
commit
9518573fce
4 changed files with 44 additions and 44 deletions
|
|
@ -691,8 +691,8 @@ pub type Result = std::result::Result<(), Error>;
|
|||
/// }
|
||||
/// ```
|
||||
pub fn run<State, Message, Theme, Renderer>(
|
||||
update: impl application::Update<State, Message> + 'static,
|
||||
view: impl for<'a> application::View<'a, State, Message, Theme, Renderer>
|
||||
update: impl application::UpdateFn<State, Message> + 'static,
|
||||
view: impl for<'a> application::ViewFn<'a, State, Message, Theme, Renderer>
|
||||
+ 'static,
|
||||
) -> Result
|
||||
where
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue