fix(func signature): Replaced EventHandler<T, C> -> Self

This commit is contained in:
doryan 2024-07-22 16:43:03 +04:00
parent 54a4b44780
commit fd2f605978

View File

@ -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,