mod other { use typesafe_builders::prelude::*; #[derive(Builder)] pub struct Struct { x: T, y: Option } } fn main() { other::Struct::::builder().x(5).y(Some(4.0)).build(); }