mod other { use typesafe_builders::prelude::*; #[derive(Builder)] pub struct Struct { x: u8, #[builder(decay)] y: Option, #[builder(decay)] z: Box, } } fn main() { other::Struct::builder().x(5).y(8).z(4).build(); }