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.
This suprised me:
impl foo { // This method is private priv fn bar() { } } priv impl foo { // This method is public even though the impl is private. fn bar() { } }
priv impl doesn't do anything.
priv impl