(ctx: &RecipeContext<'_>)
| 86 | /// Convenience: equivalent to [`detect_recipe`]. |
| 87 | #[inline] |
| 88 | pub fn detect(ctx: &RecipeContext<'_>) -> Self { |
| 89 | detect_recipe(ctx) |
| 90 | } |
| 91 | |
| 92 | /// Build CRDT ops for `ctx` using this recipe. |
| 93 | pub fn build_ops(self, ctx: &RecipeContext<'_>) -> (FileOps, CrdtBuildStats) { |
nothing calls this directly
no test coverage detected