the problem with optional pins is you still have to give a type. You can't have "just None lol", you must have `Option::None` or `Option::None` or whatever. so if you do ```rust struct Bus { bar: Option, } let bus = Bus::new(None); ``` the compiler can't infer what type `T` is. so you get these "type annotations needed" errors