1 2 3 4 5 6 7 8 9 10 11
use crate::scope::Scope; use std::fmt; impl fmt::Display for Scope { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Scope::Dataset => write!(f, "dataset"), Scope::Column { name } => write!(f, "column '{name}'"), } } }