Method
on_delete_collection_node
(
mut self,
f: impl Fn(Uuid, Uuid, &mut Window, &mut App) + 'static,
)
Source from the content-addressed store, hash-verified
| 141 | |
| 142 | pub fn on_clear_history(mut self, f: impl Fn(&mut Window, &mut App) + 'static) -> Self { |
| 143 | self.on_clear_history = Some(Rc::new(f)); |
| 144 | self |
| 145 | } |
| 146 | |
| 147 | pub fn on_load_collection_request( |
| 148 | mut self, |
| 149 | f: impl Fn(Uuid, Uuid, &mut Window, &mut App) + 'static, |
| 150 | ) -> Self { |
| 151 | self.on_load_collection_request = Some(Rc::new(f)); |
| 152 | self |
Tested by
no test coverage detected