1#[derive(Debug, Clone, Copy, PartialEq, Eq)] 2pub struct SourceTableId(pub usize); 3 4impl From<usize> for SourceTableId { 5 fn from(value: usize) -> Self { 6 Self(value) 7 } 8}