pub trait IntoColumnName { // Required method fn into_column_name(self) -> &'static str; }
Anything that can name a single SQL column. Lets coalesce accept both bare &'static str column names and typed FieldRef handles, so callers don’t have to choose between schema-rooted typing and ad-hoc strings at the call site.
coalesce
&'static str
FieldRef