Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
rustdoc-json
/
structs.rs
blob: 43fc4743503aa5348f02b06a042ae7de7fc91200 [
file
] [
log
] [
blame
]
use
std
::
collections
::
HashMap
;
pub
struct
PlainEmpty
{}
pub
struct
Tuple
(
u32
,
String
);
pub
struct
Unit
;
pub
struct
WithPrimitives
<
'
a
>
{
num
:
u32
,
s
:
&
'
a str
,
}
pub
struct
WithGenerics
<
T
,
U
>
{
stuff
:
Vec
<
T
>,
things
:
HashMap
<
U
,
U
>,
}