Handle an action from a child view.
(
self,
handler: F,
)
| 193 | |
| 194 | /// Handle an action from a child view. |
| 195 | fn handle<A: 'static, A2: 'static, F: Fn(&mut Context, &A) -> A2 + Clone + 'static>( |
| 196 | self, |
| 197 | handler: F, |
| 198 | ) -> Handle<Self, F, A, A2> { |
| 199 | Handle::new(self, handler) |
| 200 | } |
| 201 | |
| 202 | /// Clip to bounds. |
| 203 | fn clip(self) -> Clip<Self> { |
no outgoing calls
no test coverage detected