codegen 0.2.0

Library for generating Rust code
Documentation
1
2
3
4
5
6
7
use crate::r#type::Type;

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