fix(func signature): Replaced EventHandler<T, C> -> Self
This commit is contained in:
@@ -4,7 +4,7 @@ impl<F, C> EventHandler<F, C>
|
|||||||
where
|
where
|
||||||
F: Fn(&C) + FnOnce(&C) + FnMut(&C),
|
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 {
|
Self {
|
||||||
component,
|
component,
|
||||||
callback,
|
callback,
|
||||||
|
|||||||
Reference in New Issue
Block a user