Finds a table by name. Returns `None` if no table with the given name exists.
(name: &str)
| 1107 | /// |
| 1108 | /// Returns `None` if no table with the given name exists. |
| 1109 | pub fn get_table_info(name: &str) -> Option<&'static TableInfo> { |
| 1110 | TABLES.iter().find(|t| t.name == name) |
| 1111 | } |
| 1112 | |
| 1113 | /// Groups tables by their category. |
| 1114 | /// |
no outgoing calls
no test coverage detected