1 2 3 4 5 6 7 8 9 10
use super::*; #[derive(Clone)] pub struct AssemblyRef(pub Row); impl std::fmt::Debug for AssemblyRef { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("AssemblyRef").field("row", &self.0).finish() } }