We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
struct Priv; pub use self::private::public; mod private { pub type Priv = super::Priv; pub fn public(_x: Priv) { } }
The function public is exported, accepting the type Priv, even though Priv is not exported.
public
Priv