codegen/
bound.rs

1use crate::r#type::Type;
2
3#[derive(Debug, Clone)]
4pub struct Bound {
5    pub name: String,
6    pub bound: Vec<Type>,
7}