codegen 0.2.0

Library for generating Rust code
Documentation
use crate::r#type::Type;

#[derive(Debug, Clone)]
pub struct Bound {
    pub name: String,
    pub bound: Vec<Type>,
}