1use crate::{
2 models::{GridColumnDef, GridRow},
3 utils::{get_cell_value, stringify_cell_value},
4};
5
6pub fn format_grid_cell_display_value(row: &GridRow, column: &GridColumnDef) -> String {
7 stringify_cell_value(&get_cell_value(&row.entity, column))
8}