This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
df5c2cf9bc
rust
/
tests
/
ui
/
resolve
/
auxiliary
/
privacy-struct-ctor.rs
10 lines
119 B
Rust
Raw
Normal View
History
Unescape
Escape
Privatize constructors of tuple structs with private fields
2017-01-08 15:21:35 -06:00
pub
mod
m
{
pub
struct
S
(
u8
)
;
pub
mod
n
{
Update syntax for `pub(restricted)`
2017-03-07 17:50:13 -06:00
pub
(
in
m
)
struct
Z
(
pub
(
in
m
::
n
)
u8
)
;
Privatize constructors of tuple structs with private fields
2017-01-08 15:21:35 -06:00
}
}
pub
use
m
::
S
;
Reference in New Issue
Copy Permalink