Files
komp_ac/generic_rust_todo.txt
2026-09-07 18:27:43 +02:00

13 lines
674 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1. - Your Rust module can define a column type XX, which you can add through the table definition.
- When a row is saved, the framework calls the registered modules row hooks.
- You implement your modules hook and choose whether its logic runs for every table, only tables containing XX, or
another condition.
- If you want it to affect only the XX column, your hook selects and processes that columns value from the supplied
row.
- The framework doesnt automatically make those choices. You implement the filtering and column-specific behavior;
modules without a row-hook implementation default to doing nothing.
2.