pub trait HasSize { // Required method fn size(&self, ctx: &Context) -> usize; }
Implement by the data_type::Type struct for calculating the size of a type.
data_type::Type