0.3.2
#55 Fix impl with concrete types in generics where self is used in the return type.
#[buildstructor]
impl Foo<usize> {
#[builder]
fn bound_new(simple: usize) -> Self {
Self { simple }
}
}
Previously the generated builder method was not including concrete generic type. In this case usize.