Am I losing my mind, or is there nothing as simple as optional function args in #rust? Like I want
render_thing(required: &str, other: Option<&str>) without having to call it like render_thing("Hi", None) but like render_thing("Hi")
render_thing(required: &str, other: Option<&str>) without having to call it like render_thing("Hi", None) but like render_thing("Hi")