/// Whether a table matches the shape of the metadata it was built under.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubstructTableShape{pubis_stale:bool,
}implTableShape{pubconstCURRENT:Self=Self{ is_stale:false};pubconstSTALE:Self=Self{ is_stale:true};}