About
Contact
QtCreator
KDevelop
Solarized
1
use
super
::*;
2
3
impl
std
::
fmt
::
Debug
for
TypeSpec
{
4
fn
fmt
(&self,
f
: &
mut
std
::
fmt
::
Formatter
<'_>) ->
std
::
fmt
::
Result
{
5
f
.
debug_tuple
(
name:
"TypeSpec"
).
field
(&self.
0
).
finish
()
6
}
7
}
8