like if you have `fn whatever(*const Foo, *mut Bar)` you can do: ```rust let f = Foo::new(); let mut b = Bar::new(); whatever(&f, &mut b); ```