fix(func signature): Replaced EventHandler<T, C> -> Self
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user