Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
src-links
/
mod.rs
blob: 27b2396811a66e942a3656a50bd44844e847e394 [
file
] [
log
] [
blame
] [
edit
]
//! Dox
pub
mod
bar
{
/// Dox
pub
mod
baz
{
/// Dox
pub
fn
baz
()
{
}
}
/// Dox
pub
trait
Foobar
{
fn
dummy
(&
self
)
{
}
}
pub
struct
Foo
{
x
:
i32
,
y
:
u32
}
pub
fn
prawns
((
a
,
b
):
(
i32
,
u32
),
Foo
{
x
,
y
}:
Foo
)
{
}
}
/// Dox
pub
fn
modfn
()
{
}