Examples with `rustfmt` 0.9.0-nightly: ``` $ echo "pub(super) struct Foo();" | rustfmt pub(super) struct Foo(super); $ echo "pub(crate) struct Foo();" | rustfmt pub(crate) struct Foo(crate); $ echo "pub(in self) struct Foo();" | rustfmt pub(self) struct Foo(in self); ```