1use crate::records::union_builder::UnionBuilder; 2 3impl UnionBuilder { 4 pub fn size(&self) -> usize { 5 self.options.size() 6 } 7}