1use crate::records::type_ids::TypeIds; 2 3#[derive(Debug, Clone)] 4pub struct GenericBounds { 5 pub(crate) lower_bound: TypeIds, 6 pub(crate) upper_bound: TypeIds, 7}