fix(func signature): Replaced EventHandler<T, C> -> Self
This commit is contained in:
parent
54a4b44780
commit
fd2f605978
|
@ -4,7 +4,7 @@ impl<F, C> EventHandler<F, C>
|
|||
where
|
||||
F: Fn(&C) + FnOnce(&C) + FnMut(&C),
|
||||
{
|
||||
pub fn new(component: C, callback: F) -> EventHandler<F, C> {
|
||||
pub fn new(component: C, callback: F) -> Self {
|
||||
Self {
|
||||
component,
|
||||
callback,
|
||||
|
|
Loading…
Reference in New Issue