1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use super::*;

// TODO: need Copy?
#[derive(Copy, Clone, PartialEq, PartialOrd, Eq, Ord)]
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()
    }
}