Builds the [`Hooks`] collection from the registered hooks.
(self)
| 35 | |
| 36 | /// Builds the [`Hooks`] collection from the registered hooks. |
| 37 | pub fn build(self) -> Hooks { |
| 38 | Hooks { |
| 39 | inner: Arc::new(self.hooks), |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | impl Default for HooksBuilder { |
no outgoing calls