A macro to support #[cfg()]
on visibility.
```rust use cfgvis::{cfgvis, cfgvisfields};
// default visibility is pub
, while the target is linux, the visibility is pub(super)
.
pub fn foo() {}
pub struct Foo { #[cfgvis(test, pub)] pubintest: i32, #[cfgvis(test)] pub prvintest: i32, } ```